index.d.mts 497 B

1234567891011
  1. type PathConditionsMap = {
  2. [condition: string]: PathConditions | null;
  3. };
  4. type PathOrMap = string | PathConditionsMap;
  5. type PathConditions = PathOrMap | readonly PathOrMap[];
  6. declare const resolveExports: (exports: PathConditions, request: string, conditions: readonly string[]) => string[];
  7. declare const resolveImports: (imports: PathConditionsMap, request: string, conditions: readonly string[]) => string[];
  8. export { PathConditions, PathConditionsMap, resolveExports, resolveImports };