Skip to content

Commit 1ba0ce0

Browse files
Lint fix
1 parent e05386e commit 1ba0ce0

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

packages/firestore/src/local/indexeddb_persistence.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ import {
4545
DbPrimaryClient,
4646
DbPrimaryClientKey,
4747
DbTargetDocument,
48-
DbTargetGlobal,
4948
SCHEMA_VERSION,
5049
SchemaConverter
5150
} from './indexeddb_schema';

packages/firestore/src/local/indexeddb_schema.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ import {
2828
EncodedResourcePath
2929
} from './encoded_resource_path';
3030
import { removeMutationBatch } from './indexeddb_mutation_queue';
31-
import { getHighestListenSequenceNumber } from './indexeddb_target_cache';
3231
import { dbDocumentSize } from './indexeddb_remote_document_cache';
3332
import { LocalSerializer } from './local_serializer';
3433
import { MemoryCollectionParentIndex } from './memory_index_manager';

packages/firestore/src/local/indexeddb_target_cache.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ import {
2929
} from './encoded_resource_path';
3030
import {
3131
IndexedDbLruDelegate,
32-
IndexedDbPersistence,
33-
IndexedDbTransaction
32+
IndexedDbPersistence
3433
} from './indexeddb_persistence';
3534
import {
3635
DbTarget,
@@ -46,7 +45,7 @@ import { PersistenceTransaction } from './persistence';
4645
import { PersistencePromise } from './persistence_promise';
4746
import { TargetCache } from './target_cache';
4847
import { TargetData } from './target_data';
49-
import { SimpleDb, SimpleDbStore, SimpleDbTransaction } from './simple_db';
48+
import { SimpleDbStore } from './simple_db';
5049
import { Target } from '../core/target';
5150

5251
export class IndexedDbTargetCache implements TargetCache {

0 commit comments

Comments
 (0)