UNPKG

@atomist/automation-client

Version:

Atomist API for software low-level client

11 lines 284 B
import { File } from "../File"; /** * Implementation of File interface backed by local file system */ export interface LocalFile extends File { /** * Real, operating system dependent, path to the file. */ realPath: string; } //# sourceMappingURL=LocalFile.d.ts.map