UNPKG

yaml-language-server

Version:
18 lines (17 loc) 397 B
import type { ErrorCode } from '../jsonLanguageTypes'; export declare const DUPLICATE_KEY_REASON = "duplicate key"; /** * An individual YAML diagnostic, * after formatting. */ export interface YAMLDocDiagnostic { message: string; location: { start: number; end: number; toLineEnd: boolean; }; severity: 1 | 2; source?: string; code: ErrorCode; }