alapa
Version:
A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.
25 lines (24 loc) • 527 B
TypeScript
import { BaseDataSourceOptions } from "../BaseDataSourceOptions";
/**
* Sqlite-specific connection options.
*/
export interface ReactNativeConnectionOptions extends BaseDataSourceOptions {
/**
* Database type.
*/
type: "react-native";
/**
* Database name.
*/
database: string;
/**
* The driver object
* This defaults to require("react-native-sqlite-storage")
*/
driver?: unknown;
/**
* Storage Location
*/
location: string;
poolSize?: never;
}