UNPKG

769 BTypeScriptView Raw
1import { TextDocument, Range } from 'vscode-languageserver-types';
2import { Dockerfile } from './dockerfile';
3import { Argument } from './argument';
4import { JSONArgument } from './jsonArgument';
5import { ModifiableInstruction } from './modifiableInstruction';
6export declare class JSONInstruction extends ModifiableInstruction {
7 private readonly openingBracket;
8 private readonly closingBracket;
9 private readonly jsonStrings;
10 constructor(document: TextDocument, range: Range, dockerfile: Dockerfile, escapeChar: string, instruction: string, instructionRange: Range);
11 protected stopSearchingForFlags(_value: string): boolean;
12 getOpeningBracket(): Argument | null;
13 getJSONStrings(): JSONArgument[];
14 getClosingBracket(): Argument | null;
15}