Interface DBResponse

interface DBResponse {
    data?: {
        [key: string]: any;
    };
    entities?: RichStructList;
    entityList?: EntityList;
    error?: string;
    list?: any[];
    nextCursor?: string;
    opId: bigint;
}

Properties

data?: {
    [key: string]: any;
}
entities?: RichStructList
entityList?: EntityList
error?: string
list?: any[]
nextCursor?: string
opId: bigint