UNPKG

@atomist/automation-client

Version:

Atomist API for software low-level client

14 lines (10 loc) 248 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; }