UNPKG

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