We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b606c2 commit 240bcddCopy full SHA for 240bcdd
packages/react-native/src/db/PowerSyncDatabase.ts
@@ -60,14 +60,4 @@ export class PowerSyncDatabase extends AbstractPowerSyncDatabase {
60
identifier: this.database.name
61
});
62
}
63
-
64
- async readLock<T>(callback: (db: DBAdapter) => Promise<T>): Promise<T> {
65
- await this.waitForReady();
66
- return this.database.readLock(callback);
67
- }
68
69
- async writeLock<T>(callback: (db: DBAdapter) => Promise<T>): Promise<T> {
70
71
- return this.database.writeLock(callback);
72
73
0 commit comments