aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/models/src/videos/video-include.enum.ts
blob: 7d88a68901af78eb0e7dd743bb20c74d4b270610 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const VideoInclude = {
  NONE: 0,
  NOT_PUBLISHED_STATE: 1 << 0,
  BLACKLISTED: 1 << 1,
  BLOCKED_OWNER: 1 << 2,
  FILES: 1 << 3,
  CAPTIONS: 1 << 4
} as const

export type VideoIncludeType = typeof VideoInclude[keyof typeof VideoInclude]