lingjing/node_modules/next/dist/server/utils.d.ts
2026-02-23 09:51:43 +00:00

5 lines
268 B
TypeScript

export declare function isBlockedPage(page: string): boolean;
type AnyFunc<T> = (this: T, ...args: any) => any;
export declare function debounce<T, F extends AnyFunc<T>>(fn: F, ms: number, maxWait?: number): (this: T, ...passedArgs: Parameters<F>) => void;
export {};