1 | import { TextDocument } from 'vscode-languageserver-textdocument';
|
2 | import { Range } from 'vscode-languageserver-types';
|
3 | import { Dockerfile } from '../dockerfile';
|
4 | import { Variable } from '../variable';
|
5 | import { Property } from '../property';
|
6 | import { PropertyInstruction } from '../propertyInstruction';
|
7 | export declare class Label extends PropertyInstruction {
|
8 | constructor(document: TextDocument, range: Range, dockerfile: Dockerfile, escapeChar: string, instruction: string, instructionRange: Range);
|
9 | getVariables(): Variable[];
|
10 | getProperties(): Property[];
|
11 | }
|