UNPKG

511 BTypeScriptView Raw
1import { TextDocument, Range } from 'vscode-languageserver-types';
2import { Dockerfile } from '../dockerfile';
3import { Instruction } from '../instruction';
4export declare class Onbuild extends Instruction {
5 constructor(document: TextDocument, range: Range, dockerfile: Dockerfile, escapeChar: string, instruction: string, instructionRange: Range);
6 getTrigger(): string | null;
7 getTriggerWord(): string | null;
8 getTriggerRange(): Range | null;
9 getTriggerInstruction(): Instruction | null;
10}