1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
=== /index.ts ===
export type LocalInterface =
>LocalInterface : import("/node_modules/pkg/require").RequireInterface & import("/node_modules/pkg/import").ImportInterface
& import("pkg", { assert: {"resolution-mode": "require"} }).RequireInterface
& import("pkg", { assert: {"resolution-mode": "import"} }).ImportInterface;
export const a = (null as any as import("pkg", { assert: {"resolution-mode": "require"} }).RequireInterface);
>a : import("/node_modules/pkg/require").RequireInterface
>(null as any as import("pkg", { assert: {"resolution-mode": "require"} }).RequireInterface) : import("/node_modules/pkg/require").RequireInterface
>null as any as import("pkg", { assert: {"resolution-mode": "require"} }).RequireInterface : import("/node_modules/pkg/require").RequireInterface
>null as any : any
>null : null
export const b = (null as any as import("pkg", { assert: {"resolution-mode": "import"} }).ImportInterface);
>b : import("/node_modules/pkg/import").ImportInterface
>(null as any as import("pkg", { assert: {"resolution-mode": "import"} }).ImportInterface) : import("/node_modules/pkg/import").ImportInterface
>null as any as import("pkg", { assert: {"resolution-mode": "import"} }).ImportInterface : import("/node_modules/pkg/import").ImportInterface
>null as any : any
>null : null
=== /node_modules/pkg/import.d.ts ===
export interface ImportInterface {}
=== /node_modules/pkg/require.d.ts ===
export interface RequireInterface {}
|