From 2b38d8767fe7e9553e969ab9867f9cf899a1308e Mon Sep 17 00:00:00 2001 From: Arthur Fiorette <47537704+arthurfiorette@users.noreply.github.com> Date: Tue, 2 Jan 2024 16:55:33 -0300 Subject: [PATCH] JSDoc typo on `__exportStar`. (#221) * Update tslib.d.ts * rename exports to o --- tslib.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tslib.d.ts b/tslib.d.ts index 104369b..4576221 100644 --- a/tslib.d.ts +++ b/tslib.d.ts @@ -123,7 +123,7 @@ export declare function __generator(thisArg: any, body: Function): any; * Creates bindings for all enumerable properties of `m` on `exports` * * @param m The source object - * @param exports The `exports` object. + * @param o The `exports` object. */ export declare function __exportStar(m: any, o: any): void;