wallace-screen-app/types/terminal.ts

18 lines
256 B
TypeScript

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[]
}