UNPKG

259 BTypeScriptView Raw
1import { PluginObj } from '@babel/core';
2import { ResolvedOptions } from '../types';
3declare type PluginState = Record<symbol, any> & {
4 opts: Partial<ResolvedOptions>;
5 file: any;
6};
7export default function plugin(): PluginObj<PluginState>;
8export {};