Skip to content

sqlocal / index / DriverStatement

Type Alias: DriverStatement

ts
type DriverStatement = {
  method?: Sqlite3Method;
  params?: any[];
  sql: string;
};

Defined in: src/types.ts:115

Properties

PropertyTypeDefined in
method?Sqlite3Methodsrc/types.ts:118
params?any[]src/types.ts:117
sqlstringsrc/types.ts:116

Released under the MIT License