aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/custom-markup/custom-markup-data.model.ts
blob: 085ea7cf6e48ccac0fb6b454987571f30ca8c7b2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                        

                                      












                                           








                                                 
 




                                
                                 
 





                                   
export type EmbedMarkupData = {
  // Video or playlist uuid
  uuid: string
}

export type VideoMiniatureMarkupData = {
  // Video uuid
  uuid: string

  onlyDisplayTitle?: string // boolean
}

export type PlaylistMiniatureMarkupData = {
  // Playlist uuid
  uuid: string
}

export type ChannelMiniatureMarkupData = {
  // Channel name (username)
  name: string
}

export type VideosListMarkupData = {
  onlyDisplayTitle?: string // boolean

  sort?: string
  count?: string

  categoryOneOf?: string // coma separated values
  languageOneOf?: string // coma separated values

  onlyLocal?: string // boolean
}

export type ButtonMarkupData = {
  theme: 'primary' | 'secondary'
  href: string
  label: string
  blankTarget?: string // boolean
}

export type ContainerMarkupData = {
  width?: string
  title?: string
  description?: string
}