UNPKG

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