-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(replicache: Remove MetaType.SnapshotSDD (#3508)
- Loading branch information
Showing
15 changed files
with
117 additions
and
1,156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
/* eslint-disable @typescript-eslint/naming-convention */ | ||
|
||
export const SnapshotSDD = 3; | ||
// These three were used before... | ||
// IndexChangeSDD = 1; | ||
// LocalSDD = 2; | ||
// SnapshotSDD = 3; | ||
export const LocalDD31 = 4; | ||
export const SnapshotDD31 = 5; | ||
|
||
export type SnapshotSDD = typeof SnapshotSDD; | ||
export type LocalDD31 = typeof LocalDD31; | ||
export type SnapshotDD31 = typeof SnapshotDD31; | ||
|
||
export type Type = SnapshotSDD | LocalDD31 | SnapshotDD31; | ||
export type Type = LocalDD31 | SnapshotDD31; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.