Skip to content

Commit bb97c27

Browse files
author
Greg Soltis
authored
Fix unsound type signature (#1075)
1 parent e8460bc commit bb97c27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firestore/src/local/indexeddb_persistence.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export class IndexedDbPersistence implements Persistence {
193193

194194
runTransaction<T>(
195195
action: string,
196-
operation: (transaction: IndexedDbTransaction) => PersistencePromise<T>
196+
operation: (transaction: PersistenceTransaction) => PersistencePromise<T>
197197
): Promise<T> {
198198
if (this.persistenceError) {
199199
return Promise.reject(this.persistenceError);

0 commit comments

Comments
 (0)