UNPKG

dockerfile-language-service

Version:

A language service for Dockerfiles to enable the creation of feature-rich Dockerfile editors.

6 lines (5 loc) 288 B
import { Command, Diagnostic, TextEdit } from 'vscode-languageserver-types'; export declare class DockerCommands { analyzeDiagnostics(diagnostics: Diagnostic[], textDocumentURI: string): Command[]; computeCommandEdits(content: string, command: string, args: any[]): TextEdit[]; }