Files
Home_Buying_App/node_modules/set-function-length/index.d.ts
jackbeeby b412dfe2ca Initialisation
Added the packages and files for the backend server
2024-12-15 17:48:45 +11:00

7 lines
256 B
TypeScript

declare namespace setFunctionLength {
type Func = (...args: unknown[]) => unknown;
}
declare function setFunctionLength<T extends setFunctionLength.Func = setFunctionLength.Func>(fn: T, length: number, loose?: boolean): T;
export = setFunctionLength;