1 | import { MappingEntry } from "./mapping-entry";
|
2 | export interface TryPath {
|
3 | readonly type: "file" | "extension" | "index" | "package";
|
4 | readonly path: string;
|
5 | }
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 | export declare function getPathsToTry(extensions: ReadonlyArray<string>, absolutePathMappings: ReadonlyArray<MappingEntry>, requestedModule: string): ReadonlyArray<TryPath> | undefined;
|
14 | export declare function getStrippedPath(tryPath: TryPath): string;
|
15 | export declare function exhaustiveTypeException(check: never): never;
|