Files
vercel__next.js/packages/react-refresh-utils/react-refresh-runtime.d.ts
Sebastian "Sebbie" Silbermann d141874063 Bump TypeScript to 6.0 (#91257)
2026-04-14 12:22:38 +02:00

20 lines
792 B
TypeScript

declare module 'react-refresh/runtime' {
export function injectIntoGlobalHook(...args: any[]): void
export function register(...args: any[]): void
export function createSignatureFunctionForTransform(...args: any[]): any
export function getFamilyByType(...args: any[]): any
export function isLikelyComponentType(...args: any[]): boolean
export function performReactRefresh(...args: any[]): void
const RefreshRuntime: {
injectIntoGlobalHook: typeof injectIntoGlobalHook
register: typeof register
createSignatureFunctionForTransform: typeof createSignatureFunctionForTransform
getFamilyByType: typeof getFamilyByType
isLikelyComponentType: typeof isLikelyComponentType
performReactRefresh: typeof performReactRefresh
}
export default RefreshRuntime
}