-
Notifications
You must be signed in to change notification settings - Fork 0
/
auto-imports.d.ts
38 lines (38 loc) · 1.75 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
31
32
33
34
35
36
37
38
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// noinspection JSUnusedGlobalSymbols
// Generated by unplugin-auto-import
export {}
declare global {
const Link: typeof import('./components/Link')['default']
const PageContextProvider: typeof import('./hooks/usePageContext')['PageContextProvider']
const PageShell: typeof import('./layouts/PageShell')['PageShell']
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 usePageContext: typeof import('vike-react/usePageContext')['usePageContext']
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']
}
// for type re-export
declare global {
// @ts-ignore
export type { FC, PropsWithChildren } from '@types/react'
import('@types/react')
}