保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;