From 9bdb95c9e34cef640534e5e5a1e2225a80442000 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 09 六月 2022 15:48:15 +0800 Subject: [PATCH] TODO#139894 [ footer -最下方說明與保經代合作 ] 文案修改 --- PAMapp/node_modules/browserslist/index.d.ts | 20 +++++++++++++------- 1 files changed, 13 insertions(+), 7 deletions(-) diff --git a/PAMapp/node_modules/browserslist/index.d.ts b/PAMapp/node_modules/browserslist/index.d.ts index bd48cf3..bea4270 100644 --- a/PAMapp/node_modules/browserslist/index.d.ts +++ b/PAMapp/node_modules/browserslist/index.d.ts @@ -8,7 +8,7 @@ * @param queries Browser queries. * @returns Array with browser names in Can I Use. */ -declare function browserslist ( +declare function browserslist( queries?: string | readonly string[] | null, opts?: browserslist.Options ): string[] @@ -36,6 +36,10 @@ * Do not throw on unknown version in direct query. */ ignoreUnknownVersions?: boolean + /** + * Throw a error if env is not found. + */ + throwOnMissing?: boolean /** * Disable security checks for extend query. */ @@ -98,6 +102,8 @@ | undefined } + let nodeVersions: string[] + interface Usage { [version: string]: number } @@ -136,15 +142,15 @@ * @param stats Which statistics should be used. * @returns Total market coverage for all selected browsers. */ - function coverage (browsers: readonly string[], stats?: StatsOptions): number + function coverage(browsers: readonly string[], stats?: StatsOptions): number - function clearCaches (): void + function clearCaches(): void - function parseConfig (string: string): Config + function parseConfig(string: string): Config - function readConfig (file: string): Config + function readConfig(file: string): Config - function findConfig (...pathSegments: string[]): Config | undefined + function findConfig(...pathSegments: string[]): Config | undefined interface LoadConfigOptions { config?: string @@ -152,7 +158,7 @@ env?: string } - function loadConfig (options: LoadConfigOptions): string[] | undefined + function loadConfig(options: LoadConfigOptions): string[] | undefined } declare global { -- Gitblit v1.8.0