Files
infocom-systems-design/node_modules/jotai/ts3.8/babel/preset.d.ts
2025-10-03 22:27:28 +03:00

6 lines
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;