UNPKG

expo-sqlite

Version:

Provides access to a database that can be queried through a WebSQL-like API (https://www.w3.org/TR/webdatabase/). The database is persisted across restarts of your app.

26 lines 670 B
export default { get name() { return 'ExpoSQLiteNext'; }, NativeDatabase(databaseName, options) { throw new Error('Unimplemented'); }, NativeStatement() { throw new Error('Unimplemented'); }, async deleteDatabaseAsync(databaseName) { throw new Error('Unimplemented'); }, deleteDatabaseSync(databaseName) { throw new Error('Unimplemented'); }, //#region EventEmitter implementations addListener() { throw new Error('Unimplemented'); }, removeListeners() { throw new Error('Unimplemented'); }, //#endregion }; //# sourceMappingURL=ExpoSQLiteNext.js.map