diff options
Diffstat (limited to 'node_modules/resolve.exports/index.d.ts')
-rw-r--r-- | node_modules/resolve.exports/index.d.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/node_modules/resolve.exports/index.d.ts b/node_modules/resolve.exports/index.d.ts new file mode 100644 index 0000000..94217c7 --- /dev/null +++ b/node_modules/resolve.exports/index.d.ts @@ -0,0 +1,21 @@ +export type Options = { + browser?: boolean; + conditions?: string[]; + require?: boolean; + unsafe?: false; +} | { + conditions?: string[]; + unsafe?: true; +} + +export function resolve<T=any>(pkg: T, entry: string, options?: Options): string | void; + +export type BrowserFiles = Record<string, string | false>; + +export function legacy<T=any>(pkg: T, options: { browser: true, fields?: string[] }): BrowserFiles | string | void; +export function legacy<T=any>(pkg: T, options: { browser: string, fields?: string[] }): string | false | void; +export function legacy<T=any>(pkg: T, options: { browser: false, fields?: string[] }): string | void; +export function legacy<T=any>(pkg: T, options?: { + browser?: boolean | string; + fields?: string[]; +}): BrowserFiles | string | false | void; |