aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/models/src/videos/video-storage.enum.ts
blob: de5c92e0d0f8d6c43b913bf3b7a9af67b43394a0 (plain) (blame)
1
2
3
4
5
6
export const VideoStorage = {
  FILE_SYSTEM: 0,
  OBJECT_STORAGE: 1
} as const

export type VideoStorageType = typeof VideoStorage[keyof typeof VideoStorage]