-
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.IndexChangeSDD (#3500)
This is one of many to remove SDD from Replicache
- Loading branch information
Showing
9 changed files
with
22 additions
and
1,249 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,20 +1,13 @@ | ||
/* eslint-disable @typescript-eslint/naming-convention */ | ||
|
||
export const IndexChangeSDD = 1; | ||
export const LocalSDD = 2; | ||
export const SnapshotSDD = 3; | ||
export const LocalDD31 = 4; | ||
export const SnapshotDD31 = 5; | ||
|
||
export type IndexChangeSDD = typeof IndexChangeSDD; | ||
export type LocalSDD = typeof LocalSDD; | ||
export type SnapshotSDD = typeof SnapshotSDD; | ||
export type LocalDD31 = typeof LocalDD31; | ||
export type SnapshotDD31 = typeof SnapshotDD31; | ||
|
||
export type Type = | ||
| IndexChangeSDD | ||
| LocalSDD | ||
| SnapshotSDD | ||
| LocalDD31 | ||
| SnapshotDD31; | ||
export type Type = LocalSDD | SnapshotSDD | LocalDD31 | SnapshotDD31; |
Oops, something went wrong.