Skip to content

Commit 648c0e6

Browse files
Lint cleanup
1 parent 5e84782 commit 648c0e6

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

packages/firestore/src/local/indexeddb_schema.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function createOrUpgradeDb(
4242
createTargetChangeStore(db);
4343
}
4444

45-
if (fromVersion == 0 && toVersion >= 1) {
45+
if (fromVersion === 0 && toVersion >= 1) {
4646
createOwnerStore(db);
4747
createMutationQueue(db);
4848
createQueryCache(db);
@@ -558,11 +558,14 @@ export class DbInstanceMetadata {
558558
static keyPath = ['userId', 'instanceKey'];
559559

560560
constructor(
561-
/** userId - The normalized user ID to which this batch belongs.*/
561+
/** @param userId - The normalized user ID to which this batch belongs. */
562562
public userId: string,
563-
/** instanceKey - The auto-generated instance key assigned at client startup. */
563+
/**
564+
* @param instanceKey - The auto-generated instance key assigned at client
565+
* startup.
566+
*/
564567
public instanceKey: string,
565-
/** updateTimeMs - The last time this state was updated. */
568+
/** @param updateTimeMs - The last time this state was updated. */
566569
public updateTimeMs: DbTimestamp
567570
) {}
568571
}

0 commit comments

Comments
 (0)