code-workshop-kit
Version:
The future of remote code workshops & training
20 lines • 523 B
TypeScript
import * as BabelTypes from '@babel/types';
import { NodePath } from '@babel/traverse';
interface PluginOptions {
opts?: {
clear?: boolean;
key?: string;
};
file?: {
path?: NodePath;
};
}
declare const _default: ({ types: t, }: {
types: typeof BabelTypes;
}) => {
visitor: {
ExportDefaultDeclaration(path: NodePath<BabelTypes.ExportDefaultDeclaration>, state: PluginOptions): void;
};
};
export default _default;
//# sourceMappingURL=babel-plugin-app-key.d.ts.map