UNPKG

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