forked from sagnik/Project_Velocity
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
import { Node } from '@babel/core';
|
|
import { Plugin } from 'vite';
|
|
|
|
type Options = {
|
|
predicate?: (node: Node) => boolean;
|
|
base?: string;
|
|
};
|
|
declare function inspectDom(options?: Options): Plugin;
|
|
|
|
export { inspectDom };
|