Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
stevensJourney committed Nov 6, 2023
1 parent e2fab7f commit 8bcbcd4
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,12 @@ export abstract class AbstractPowerSyncDatabase extends BaseObserver<PowerSyncDB

constructor(protected options: PowerSyncDatabaseOptions) {
super();
this.currentStatus = null;
this._isReadyPromise = null;
this.bucketStorageAdapter = this.generateBucketStorageAdapter();
this.closed = true;
this.ready = false;
this.currentStatus = null;
this.options = { ...DEFAULT_POWERSYNC_DB_OPTIONS, ...options };
this.bucketStorageAdapter = this.generateBucketStorageAdapter();
this.ready = false;
this.sdkVersion = '';
}

Expand Down

0 comments on commit 8bcbcd4

Please sign in to comment.