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

6 lines
348 B
TypeScript

import { types } from '@babel/core';
export interface PluginOptions {
customAtomNames?: string[];
}
export declare function isAtom(t: typeof types, callee: babel.types.Expression | babel.types.V8IntrinsicIdentifier, customAtomNames?: PluginOptions['customAtomNames']): boolean;
declare type Awaited<T> = T extends Promise<infer V> ? V : T;