UNPKG

@atomist/sdm-pack-spring

Version:

Atomist software delivery machine extension pack for Spring and Spring Boot applications

20 lines (19 loc) 432 B
import { MatchResult } from "@atomist/automation-client"; /** * Part of a file we can work around */ export interface BoundedElement { /** * Value of whole element */ value: string; /** * Offset within the file */ offset: number; /** * Save point to insert after this element */ insertAfter: number; } export declare function toBoundedElement(m: MatchResult): BoundedElement;