Test/node_modules/jotai/ts3.8/esm/babel/preset.d.ts
2026-04-09 22:54:00 +07:00

6 lines
No EOL
262 B
TypeScript

import babel from '@babel/core';
import type { 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;