4 lines
111 B
TypeScript

declare function arity (arity: number, fn: (...args: any[]) => any): (...args: any[]) => any;
export = arity;