@powersync/react-native
Version:
PowerSync React Native SDK. Sync Postgres, MongoDB or MySQL with SQLite in your React Native app
10 lines (9 loc) • 339 B
TypeScript
import { DBAdapter, SQLOpenFactory, SQLOpenOptions } from '@powersync/common';
/**
* Opens a SQLite connection using React Native Quick SQLite
*/
export declare class ReactNativeQuickSqliteOpenFactory implements SQLOpenFactory {
protected options: SQLOpenOptions;
constructor(options: SQLOpenOptions);
openDB(): DBAdapter;
}