Skip to content

Commit

Permalink
version made optional in interface
Browse files Browse the repository at this point in the history
  • Loading branch information
noble-wave committed Dec 24, 2024
1 parent d957992 commit 4da6050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ngx-indexed-db/src/lib/ngx-indexed-db.meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { InjectionToken } from '@angular/core';

export interface DBConfig {
name: string;
version: number;
version?: number;
objectStoresMeta: ObjectStoreMeta[];
migrationFactory?: () => { [key: number]: (db: IDBDatabase, transaction: IDBTransaction) => void };
isDefault?: boolean;
Expand Down

0 comments on commit 4da6050

Please sign in to comment.