Skip to content

Commit 45e0819

Browse files
committed
remove type keyword since api extractor doesn't understand it
1 parent 45a9243 commit 45e0819

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/firestore/src/local/indexeddb_schema_converter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ import { MemoryCollectionParentIndex } from './memory_index_manager';
129129
import { MemoryEagerDelegate, MemoryPersistence } from './memory_persistence';
130130
import { PersistencePromise } from './persistence_promise';
131131
import {
132+
IdbDatabaseDebugIdPair,
132133
SimpleDbSchemaConverter,
133-
SimpleDbTransaction,
134-
type IdbDatabaseDebugIdPair
134+
SimpleDbTransaction
135135
} from './simple_db';
136136

137137
/** Performs database creation and schema upgrades. */

packages/firestore/test/unit/local/encoded_resource_path.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ import {
2323
} from '../../../src/local/encoded_resource_path';
2424
import { PersistencePromise } from '../../../src/local/persistence_promise';
2525
import {
26+
IdbDatabaseDebugIdPair,
2627
SimpleDb,
2728
SimpleDbSchemaConverter,
2829
SimpleDbStore,
29-
SimpleDbTransaction,
30-
type IdbDatabaseDebugIdPair
30+
SimpleDbTransaction
3131
} from '../../../src/local/simple_db';
3232
import { ResourcePath } from '../../../src/model/path';
3333
import { path } from '../../util/helpers';

packages/firestore/test/unit/local/simple_db.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ import { dbKeyComparator } from '../../../src/local/indexeddb_remote_document_ca
2323
import { PersistencePromise } from '../../../src/local/persistence_promise';
2424
import {
2525
getAndroidVersion,
26+
IdbDatabaseDebugIdPair,
2627
SimpleDb,
2728
SimpleDbSchemaConverter,
2829
SimpleDbStore,
29-
SimpleDbTransaction,
30-
type IdbDatabaseDebugIdPair
30+
SimpleDbTransaction
3131
} from '../../../src/local/simple_db';
3232
import { DocumentKey } from '../../../src/model/document_key';
3333
import { fail } from '../../../src/util/assert';

0 commit comments

Comments
 (0)