UNPKG

370 BTypeScriptView Raw
1import { TextDocument, Range } from 'vscode-languageserver-types';
2import { Dockerfile } from '../dockerfile';
3import { JSONInstruction } from '../jsonInstruction';
4export declare class Entrypoint extends JSONInstruction {
5 constructor(document: TextDocument, range: Range, dockerfile: Dockerfile, escapeChar: string, instruction: string, instructionRange: Range);
6}