Type alias l_error

l_error: {
    code: string;
    description: string;
    location: {
        file: string;
        position: number[];
    };
    severity: LINTER_ERROR_SEVERITY;
}

Individual linter error description

Type declaration

  • code: string
  • description: string
  • location: {
        file: string;
        position: number[];
    }
    • file: string
    • position: number[]
  • severity: LINTER_ERROR_SEVERITY

Generated using TypeDoc