lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
22 lines (21 loc) • 471 B
TypeScript
/**
* Runtime file cache.
* @internal
*/
export declare const filePromises: Record<string, Promise<string>>;
/**
* For testing only.
* @internal
* @deprecated minimize use in application code.
*/
export declare const fileIntercept: Record<string, Promise<string>>;
/**
* @internal
*/
export interface ReadFileOptions {
ignoreCache?: boolean;
}
/**
* @internal
*/
export declare const readFile: (path: string, options?: ReadFileOptions) => Promise<string>;