UNPKG

417 BTypeScriptView Raw
1import { Range, TextDocument } from 'vscode-languageserver-types';
2import { Dockerfile } from '../dockerfile';
3import { JSONInstruction } from '../jsonInstruction';
4export declare class Run extends JSONInstruction {
5 constructor(document: TextDocument, range: Range, dockerfile: Dockerfile, escapeChar: string, instruction: string, instructionRange: Range);
6 stopSearchingForFlags(argument: string): boolean;
7}