interface JsonAbiErrorCode {
    logId: null | string;
    msg: null | string;
    pos: {
        column: number;
        file: string;
        line: number;
        pkg: string;
    };
}

Properties

Properties

logId: null | string
msg: null | string
pos: {
    column: number;
    file: string;
    line: number;
    pkg: string;
}