expo-sqlite
Version:
Provides access to a database using SQLite (https://www.sqlite.org/). The database is persisted across restarts of your app.
22 lines (21 loc) • 541 B
TypeScript
import { ConfigPlugin } from 'expo/config-plugins';
interface Props {
customBuildFlags?: string;
enableFTS?: boolean;
useSQLCipher?: boolean;
useLibSQL?: boolean;
android: {
customBuildFlags?: string;
enableFTS?: boolean;
useSQLCipher?: boolean;
useLibSQL?: boolean;
};
ios: {
customBuildFlags?: string;
enableFTS?: boolean;
useSQLCipher?: boolean;
useLibSQL?: boolean;
};
}
declare const _default: ConfigPlugin<Props>;
export default _default;