UNPKG

575 BTypeScriptView Raw
1import { TextDocument } from 'vscode-languageserver-textdocument';
2import { Range } from 'vscode-languageserver-types';
3import { Dockerfile } from '../dockerfile';
4import { Variable } from '../variable';
5import { Property } from '../property';
6import { PropertyInstruction } from '../propertyInstruction';
7export 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}