Skip to content

sqlocal / index / RawResultData

Type Alias: RawResultData

ts
type RawResultData = {
  columns: string[];
  numAffectedRows?: bigint;
  rows: unknown[] | unknown[][];
};

Defined in: src/types.ts:74

Properties

PropertyTypeDefined in
columnsstring[]src/types.ts:76
numAffectedRows?bigintsrc/types.ts:77
rowsunknown[] | unknown[][]src/types.ts:75

Released under the MIT License