UNPKG

@libsql/core

Version:

libSQL driver for TypeScript and JavaScript

13 lines (12 loc) 611 B
import { ResultSet, Row, TransactionMode } from "./api"; export declare const supportedUrlLink = "https://github.com/libsql/libsql-client-ts#supported-urls"; export declare function transactionModeToBegin(mode: TransactionMode): string; export declare class ResultSetImpl implements ResultSet { columns: Array<string>; columnTypes: Array<string>; rows: Array<Row>; rowsAffected: number; lastInsertRowid: bigint | undefined; constructor(columns: Array<string>, columnTypes: Array<string>, rows: Array<Row>, rowsAffected: number, lastInsertRowid: bigint | undefined); toJSON(): any; }