- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
7 lines
256 B
TypeScript
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; |