UNPKG

lakutata

Version:

An IoC-based universal application framework.

28 lines (25 loc) 609 B
import { BaseDataSourceOptions } from './TypeDef.internal.33.js'; /** * Sqlite-specific connection options. */ interface ReactNativeConnectionOptions extends BaseDataSourceOptions { /** * Database type. */ readonly type: "react-native"; /** * Database name. */ readonly database: string; /** * The driver object * This defaults to require("react-native-sqlite-storage") */ readonly driver?: any; /** * Storage Location */ readonly location: string; readonly poolSize?: never; } export type { ReactNativeConnectionOptions };