Page MenuHomec4science

index.d.ts
No OneTemporary

File Metadata

Created
Sun, Jul 14, 11:30

index.d.ts

import { ConfigAPI, NodePath, types } from '@babel/core';
interface Options {
width: number | string;
height: number | string;
}
declare const plugin: (_: ConfigAPI, opts: Options) => {
visitor: {
JSXOpeningElement(path: NodePath<types.JSXOpeningElement>): void;
};
};
export { Options, plugin as default };

Event Timeline