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.
35 lines (26 loc) • 715 B
text/typescript
import { SQLiteOpenOptions } from './NativeDatabase';
export default {
get name(): string {
return 'ExpoSQLiteNext';
},
NativeDatabase(databaseName: string, options?: SQLiteOpenOptions): void {
throw new Error('Unimplemented');
},
NativeStatement(): void {
throw new Error('Unimplemented');
},
async deleteDatabaseAsync(databaseName: string): Promise<void> {
throw new Error('Unimplemented');
},
deleteDatabaseSync(databaseName: string): void {
throw new Error('Unimplemented');
},
//#region EventEmitter implementations
addListener() {
throw new Error('Unimplemented');
},
removeListeners() {
throw new Error('Unimplemented');
},
//#endregion
};