export type TerminalBinding = {
bound: boolean
storeName?: string
token?: string
}
export type PlaylistItem = {
id: string
type: 'image' | 'video'
url: string
duration?: number
export type Playlist = {
revision: string
items: PlaylistItem[]