- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
9 lines
338 B
TypeScript
9 lines
338 B
TypeScript
import { Reader, ReaderFileLackPermissionsError } from './reader';
|
|
export declare class FileSystemReader implements Reader {
|
|
private readonly directory;
|
|
constructor(directory: string);
|
|
list(): string[];
|
|
read(name: string): string;
|
|
readAnyOf(filenames: string[]): string | undefined | ReaderFileLackPermissionsError;
|
|
}
|