UNPKG

dockerfile-ast

Version:

Parse a Dockerfile into an array of instructions and comments.

8 lines (7 loc) 411 B
import { TextDocument } from 'vscode-languageserver-textdocument'; import { Range } from 'vscode-languageserver-types'; import { Dockerfile } from '../dockerfile'; import { Instruction } from '../instruction'; export declare class Stopsignal extends Instruction { constructor(document: TextDocument, range: Range, dockerfile: Dockerfile, escapeChar: string, instruction: string, instructionRange: Range); }