UNPKG

@atomist/automation-client

Version:

Atomist API for software low-level client

9 lines 327 B
import { TreeNode } from "@atomist/tree-path"; import { SourceLocation } from "../operations/common/SourceLocation"; /** * Extends TreeNode to include a source location within a project. */ export interface LocatedTreeNode extends TreeNode { sourceLocation: SourceLocation; } //# sourceMappingURL=LocatedTreeNode.d.ts.map