blob: 047444bbc3d3544a54ae9edc9dacbd5c883df6fd (
plain) (
blame)
1
2
3
4
5
6
7
8
|
export const VideoChannelSyncState = {
WAITING_FIRST_RUN: 1,
PROCESSING: 2,
SYNCED: 3,
FAILED: 4
} as const
export type VideoChannelSyncStateType = typeof VideoChannelSyncState[keyof typeof VideoChannelSyncState]
|