Files

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 };