You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
343 B

  1. export declare function merge(...sets: Array<string>): string;
  2. export declare function subexp(str: string): string;
  3. export declare function typeOf(o: any): string;
  4. export declare function toUpperCase(str: string): string;
  5. export declare function toArray(obj: any): Array<any>;
  6. export declare function assign(target: object, source: any): any;