From c34bbd9a0ca0a09f522735c33758553705dc70cb Mon Sep 17 00:00:00 2001 From: ryanvanoss Date: Tue, 18 May 2021 01:08:56 -0700 Subject: [PATCH] Add `string[]` to `PackageJson.Exports` (#210) --- source/package-json.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/source/package-json.d.ts b/source/package-json.d.ts index ea0ad37e3..953f4d42d 100644 --- a/source/package-json.d.ts +++ b/source/package-json.d.ts @@ -227,6 +227,7 @@ declare namespace PackageJson { */ export type Exports = | string + | string[] | {[key in ExportCondition]: Exports} | {[key: string]: Exports}; // eslint-disable-line @typescript-eslint/consistent-indexed-object-style