astro-ghostcms/.pnpm-store/v3/files/23/690d2757073ba304172915e528d...

12 lines
497 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
type PathConditionsMap = {
[condition: string]: PathConditions | null;
};
type PathOrMap = string | PathConditionsMap;
type PathConditions = PathOrMap | readonly PathOrMap[];
declare const resolveExports: (exports: PathConditions, request: string, conditions: readonly string[]) => string[];
declare const resolveImports: (imports: PathConditionsMap, request: string, conditions: readonly string[]) => string[];
export { PathConditions, PathConditionsMap, resolveExports, resolveImports };