UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

20 lines (19 loc) 378 B
import { BaseDataSourceOptions } from "../BaseDataSourceOptions"; /** * Sqlite-specific connection options. */ export interface ExpoConnectionOptions extends BaseDataSourceOptions { /** * Database type. */ type: "expo"; /** * Database name. */ database: string; /** * Driver module */ driver: any; poolSize?: never; }