6 lines
196 B
TypeScript
6 lines
196 B
TypeScript
import babel from '@babel/core';
|
|
import type { PluginOptions } from './utils';
|
|
export default function jotaiPreset(_: typeof babel, options?: PluginOptions): {
|
|
plugins: babel.PluginItem[];
|
|
};
|