UNPKG

@nestjs/cli

Version:

Nest - modern, fast, powerful node.js web framework (@cli)

11 lines (10 loc) 362 B
export declare class ReaderFileLackPermissionsError extends Error { readonly filePath: string; readonly fsErrorCode: string; constructor(filePath: string, fsErrorCode: string); } export interface Reader { list(): string[]; read(name: string): string; readAnyOf(filenames: string[]): string | undefined | ReaderFileLackPermissionsError; }