UNPKG

expo-sqlite

Version:

Provides access to a database using SQLite (https://www.sqlite.org/). The database is persisted across restarts of your app.

26 lines (25 loc) 704 B
import { ConfigPlugin } from 'expo/config-plugins'; export interface Props { customBuildFlags?: string; enableFTS?: boolean; useSQLCipher?: boolean; useLibSQL?: boolean; withSQLiteVecExtension?: boolean; android?: { customBuildFlags?: string; enableFTS?: boolean; useSQLCipher?: boolean; useLibSQL?: boolean; useSQLiteVec?: boolean; withSQLiteVecExtension?: boolean; }; ios?: { customBuildFlags?: string; enableFTS?: boolean; useSQLCipher?: boolean; useLibSQL?: boolean; withSQLiteVecExtension?: boolean; }; } declare const _default: ConfigPlugin<Props>; export default _default;