29 lines
530 B
TypeScript
29 lines
530 B
TypeScript
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 = {
|
|
title: string
|
|
description: string
|
|
sort: string
|
|
categoryOneOf: string // coma separated values
|
|
languageOneOf: string // coma separated values
|
|
count: string
|
|
}
|