UNPKG

jotai

Version:

👻 Next gen state management that will spook you

6 lines • 257 B
import babel from '@babel/core'; import { PluginOptions } from './utils'; export default function jotaiPreset(_: typeof babel, options?: PluginOptions): { plugins: babel.PluginItem[]; }; declare type Awaited<T> = T extends Promise<infer V> ? V : T;