interface DBResultWithColIndex {
    headers: string[];
    index: Record<string, number>;
    ok: true;
    rows: DBValue[][];
}

Hierarchy (view full)

Properties

Properties

headers: string[]
index: Record<string, number>
ok: true
rows: DBValue[][]