interface IEditorError {
    column?: number;
    description: string;
    row?: number;
    title: string;
    type: "error" | "info" | "warning";
}

Properties

column?: number
description: string
row?: number
title: string
type: "error" | "info" | "warning"