-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauto-imports.d.ts
30 lines (30 loc) · 1.48 KB
/
auto-imports.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-auto-import
export {}
declare global {
const cloneElement: typeof import("react")["cloneElement"];
const createContext: typeof import("react")["createContext"];
const createElement: typeof import("react")["createElement"];
const createRef: typeof import("react")["createRef"];
const forwardRef: typeof import("react")["forwardRef"];
const lazy: typeof import("react")["lazy"];
const memo: typeof import("react")["memo"];
const startTransition: typeof import("react")["startTransition"];
const useCallback: typeof import("react")["useCallback"];
const useContext: typeof import("react")["useContext"];
const useDebugValue: typeof import("react")["useDebugValue"];
const useDeferredValue: typeof import("react")["useDeferredValue"];
const useEffect: typeof import("react")["useEffect"];
const useId: typeof import("react")["useId"];
const useImperativeHandle: typeof import("react")["useImperativeHandle"];
const useInsertionEffect: typeof import("react")["useInsertionEffect"];
const useLayoutEffect: typeof import("react")["useLayoutEffect"];
const useMemo: typeof import("react")["useMemo"];
const useReducer: typeof import("react")["useReducer"];
const useRef: typeof import("react")["useRef"];
const useState: typeof import("react")["useState"];
const useSyncExternalStore: typeof import("react")["useSyncExternalStore"];
const useTransition: typeof import("react")["useTransition"];
}