/** * A single inline diagnostic to render inside the CodeEditor. * @public */ export interface InlineDiagnostic { /** * Inclusive start offset (0-based UTF-16 code-unit index). */ from: number; /** * Exclusive end offset (0-based UTF-16 code-unit index). */ to: number; /** * A human-readable message describing the issue shown in the tooltip on hover. */ message: string; /** * Severity level determining the underline color. * @defaultValue 'error' */ severity?: 'error' | 'warning' | 'info'; } //# sourceMappingURL=inline-diagnostic.d.ts.map