Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

util.d.ts 349B

123456
  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;