Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
import type { cancelRender as cancelRenderOriginal } from './cancel-render.js';
|
||||
import type { DelayRenderOptions, DelayRenderScope } from './delay-render.js';
|
||||
type DelayRenderFn = (label?: string, options?: DelayRenderOptions) => number;
|
||||
type ContinueRenderFn = (handle: number) => void;
|
||||
type CancelRenderFn = typeof cancelRenderOriginal;
|
||||
export declare const DelayRenderContextType: import("react").Context<DelayRenderScope | null>;
|
||||
export declare const useDelayRender: () => {
|
||||
delayRender: DelayRenderFn;
|
||||
continueRender: ContinueRenderFn;
|
||||
cancelRender: CancelRenderFn;
|
||||
};
|
||||
export {};
|
||||
Reference in New Issue
Block a user