UNPKG

448 BTypeScriptView Raw
1import { TextDocument, Range } from 'vscode-languageserver-types';
2import { Dockerfile } from '../dockerfile';
3import { Property } from '../property';
4import { PropertyInstruction } from '../propertyInstruction';
5export declare class Env extends PropertyInstruction {
6 constructor(document: TextDocument, range: Range, dockerfile: Dockerfile, escapeChar: string, instruction: string, instructionRange: Range);
7 getProperties(): Property[];
8}