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.
39 lines (30 loc) • 760 B
text/typescript
import { SQLiteOpenOptions } from './NativeDatabase';
export default {
get name(): string {
return 'ExpoSQLiteNext';
},
NativeDatabase(
databaseName: string,
options?: SQLiteOpenOptions,
serializedData?: Uint8Array
): 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
};