/home/techb158/balavpn.abdallabala.com/node_modules/tsconfig-paths/lib
NameSizeModeActions
__tests__/-0777rm
config-loader.d.ts11350666editdlrm
config-loader.js21090666editdlrm
config-loader.js.map15070666editdlrm
filesystem.d.ts11240666editdlrm
filesystem.js17420666editdlrm
filesystem.js.map13280666editdlrm
index.d.ts4450666editdlrm
index.js13740666editdlrm
index.js.map3050666editdlrm
mapping-entry.d.ts6480666editdlrm
mapping-entry.js20960666editdlrm
mapping-entry.js.map12330666editdlrm
match-path-async.d.ts10900666editdlrm
match-path-async.js52460666editdlrm
match-path-async.js.map35280666editdlrm
match-path-sync.d.ts18460666editdlrm
match-path-sync.js42990666editdlrm
match-path-sync.js.map23660666editdlrm
options.d.ts850666editdlrm
options.js3860666editdlrm
options.js.map4210666editdlrm
register.d.ts2660666editdlrm
register.js33340666editdlrm
register.js.map19050666editdlrm
try-path.d.ts8160666editdlrm
try-path.js37620666editdlrm
try-path.js.map27730666editdlrm
tsconfig-loader.d.ts10590666editdlrm
tsconfig-loader.js56910666editdlrm
tsconfig-loader.js.map41180666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/tsconfig-paths/lib/match-path-async.d.ts (1090B)
import * as MappingEntry from "./mapping-entry"; import * as Filesystem from "./filesystem"; /** * Function that can match a path async */ export interface MatchPathAsync { (requestedModule: string, readJson: Filesystem.ReadJsonAsync | undefined, fileExists: Filesystem.FileExistsAsync | undefined, extensions: ReadonlyArray | undefined, callback: MatchPathAsyncCallback): void; } export interface MatchPathAsyncCallback { (err?: Error, path?: string): void; } /** * See the sync version for docs. */ export declare function createMatchPathAsync(absoluteBaseUrl: string, paths: { [key: string]: Array; }, mainFields?: string[], addMatchAll?: boolean): MatchPathAsync; /** * See the sync version for docs. */ export declare function matchFromAbsolutePathsAsync(absolutePathMappings: ReadonlyArray, requestedModule: string, readJson: Filesystem.ReadJsonAsync | undefined, fileExists: Filesystem.FileExistsAsync | undefined, extensions: readonly string[] | undefined, callback: MatchPathAsyncCallback, mainFields?: string[]): void;