jotai
Version:
👻 Primitive and flexible state management for React
6 lines • 362 B
TypeScript
import babel from '@babel/core';
import type { PluginObj } from '@babel/core';
import type { PluginOptions } from './utils';
/** @deprecated Use `jotai-babel/plugin-debug-label` instead. */
export default function debugLabelPlugin({ types: t }: typeof babel, options?: PluginOptions): PluginObj;
declare type Awaited<T> = T extends Promise<infer V> ? V : T;