source: frontend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 558 bytes
Line 
1export 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}
17export declare const tests: ReadonlyArray<OneTest>;
Note: See TracBrowser for help on using the repository browser.