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