PeerTube/shared/models/custom-markup/custom-markup-data.model.ts

40 lines
711 B
TypeScript
Raw Normal View History

export type EmbedMarkupData = {
// Video or playlist uuid
uuid: string
}
export type VideoMiniatureMarkupData = {
// Video uuid
uuid: string
}
export type PlaylistMiniatureMarkupData = {
// Playlist uuid
uuid: string
}
export type ChannelMiniatureMarkupData = {
// Channel name (username)
name: string
}
export type VideosListMarkupData = {
sort: string
categoryOneOf: string // coma separated values
languageOneOf: string // coma separated values
count: string
}
export type ButtonMarkupData = {
theme: 'primary' | 'secondary'
href: string
label: string
blankTarget?: string
}
2021-06-09 09:19:36 +02:00
export type ContainerMarkupData = {
width?: string
title?: string
description?: string
}