7 lines
229 B
TypeScript
7 lines
229 B
TypeScript
export type FastRefreshContextType = {
|
|
fastRefreshes: number;
|
|
manualRefreshes: number;
|
|
increaseManualRefreshes: () => void;
|
|
};
|
|
export declare const FastRefreshContext: import("react").Context<FastRefreshContextType>;
|