UNPKG

jotai

Version:

👻 Primitive and flexible state management for React

7 lines • 316 B
import babel from '@babel/core'; import type { PluginOptions } from './utils'; /** @deprecated Use `jotai-babel/preset` instead. */ export default function jotaiPreset(_: typeof babel, options?: PluginOptions): { plugins: babel.PluginItem[]; }; declare type Awaited<T> = T extends Promise<infer V> ? V : T;