UNPKG

348 BTypeScriptView Raw
1import { types } from '@babel/core';
2export interface PluginOptions {
3 customAtomNames?: string[];
4}
5export declare function isAtom(t: typeof types, callee: babel.types.Expression | babel.types.V8IntrinsicIdentifier, customAtomNames?: PluginOptions['customAtomNames']): boolean;
6declare type Awaited<T> = T extends Promise<infer V> ? V : T;
\No newline at end of file