Interface ISourcesError

An error encountered when parsing a source

interface ISourcesError {
    location: {
        column?: number;
        line: number;
    };
    message: string;
    uri: string;
}

Properties

Properties

location: {
    column?: number;
    line: number;
}

Type declaration

  • Optional column?: number
  • line: number
message: string

Error message explaining what went wrong with the parse

uri: string

Generated using TypeDoc