cypress
Version:
Cypress is a next generation front end testing tool built for the modern web
16 lines (13 loc) • 343 B
TypeScript
interface ConvertOptions {
cap?: boolean;
curry?: boolean;
fixed?: boolean;
immutable?: boolean;
rearg?: boolean;
}
interface Convert {
(func: object, options?: ConvertOptions): any;
(name: string, func: (...args: any[]) => any, options?: ConvertOptions): any;
}
declare const convert: Convert;
export = convert;