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

5 lines
No EOL
298 B
TypeScript

import babel from '@babel/core';
import type { PluginObj } from '@babel/core';
import type { PluginOptions } from './utils';
export default function reactRefreshPlugin({ types: t }: typeof babel, options?: PluginOptions): PluginObj;
declare type Awaited<T> = T extends Promise<infer V> ? V : T;