match-path-data.d.ts 558 B

1234567891011121314151617
  1. export interface OneTest {
  2. readonly name: string;
  3. readonly only?: boolean;
  4. readonly skip?: boolean;
  5. readonly absoluteBaseUrl: string;
  6. readonly paths: {
  7. [key: string]: Array<string>;
  8. };
  9. readonly mainFields?: string[];
  10. readonly addMatchAll?: boolean;
  11. readonly existingFiles: ReadonlyArray<string>;
  12. readonly requestedModule: string;
  13. readonly extensions: ReadonlyArray<string>;
  14. readonly packageJson?: {};
  15. readonly expectedPath: string | undefined;
  16. }
  17. export declare const tests: ReadonlyArray<OneTest>;