1 | import { TextDocument } from 'vscode-languageserver-textdocument';
|
2 | import { Range } from 'vscode-languageserver-types';
|
3 | import { Dockerfile } from '../dockerfile';
|
4 | import { Instruction } from '../instruction';
|
5 | export declare class User extends Instruction {
|
6 | constructor(document: TextDocument, range: Range, dockerfile: Dockerfile, escapeChar: string, instruction: string, instructionRange: Range);
|
7 | }
|