UNPKG

535 BTypeScriptView Raw
1import { TextDocument } from 'vscode-languageserver-textdocument';
2import { Range } from 'vscode-languageserver-types';
3import { Dockerfile } from '../dockerfile';
4import { Flag } from '../flag';
5import { JSONInstruction } from '../jsonInstruction';
6export declare class Copy extends JSONInstruction {
7 constructor(document: TextDocument, range: Range, dockerfile: Dockerfile, escapeChar: string, instruction: string, instructionRange: Range);
8 stopSearchingForFlags(argument: string): boolean;
9 getFromFlag(): Flag | null;
10}