From 8b7ecb91f7af09ae9687d335d64002d4db0e6430 Mon Sep 17 00:00:00 2001 From: ExE Boss <3889017+ExE-Boss@users.noreply.github.com> Date: Wed, 15 Jan 2020 08:15:00 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20Add=C2=A0type=C2=A0information=20to?= =?UTF-8?q?=C2=A0`=5F=5Fvalues(=E2=80=A6)`=20helper=C2=A0functions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tslib.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tslib.d.ts b/tslib.d.ts index 9e43edc..bc8dc9c 100644 --- a/tslib.d.ts +++ b/tslib.d.ts @@ -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, o: any): void; -export declare function __values(o: any): any; +export declare function __values(o: Iterable | ArrayLike): Iterator; 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(o: AsyncIterable | Iterable | ArrayLike): AsyncIterator; export declare function __makeTemplateObject(cooked: string[], raw: string[]): TemplateStringsArray; export declare function __importStar(mod: T): T; export declare function __importDefault(mod: T): T | { default: T };