Skip to content

Commit

Permalink
feat: Add type information to __values(…) helper functions
Browse files Browse the repository at this point in the history
  • Loading branch information
ExE-Boss committed Jan 15, 2020
1 parent 3cf8ae0 commit 1a41eca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tslib.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ export declare function __metadata(metadataKey: any, metadataValue: any): Functi
export declare function __awaiter(thisArg: any, _arguments: any, P: Function, generator: Function): any;
export declare function __generator(thisArg: any, body: Function): any;
export declare function __exportStar(m: any, exports: any): void;
export declare function __values(o: any): any;
export declare function __values<T>(o: Iterable<T> | ArrayLike<T>): Iterator<T>;
export declare function __read(o: any, n?: number): any[];
export declare function __spread(...args: any[][]): any[];
export declare function __spreadArrays(...args: any[][]): any[];
export declare function __await(v: any): any;
export declare function __asyncGenerator(thisArg: any, _arguments: any, generator: Function): any;
export declare function __asyncDelegator(o: any): any;
export declare function __asyncValues(o: any): any;
export declare function __asyncValues<T>(o: AsyncIterable<T> | Iterable<T> | ArrayLike<T>): AsyncIterator<T>;
export declare function __makeTemplateObject(cooked: string[], raw: string[]): TemplateStringsArray;
export declare function __importStar<T>(mod: T): T;
export declare function __importDefault<T>(mod: T): T | { default: T };
Expand Down

0 comments on commit 1a41eca

Please sign in to comment.