ffplayout/types/intex.ts

39 lines
661 B
TypeScript
Raw Normal View History

2023-01-11 10:54:25 +01:00
export {}
declare global {
interface Crumb {
text: string
path: string
}
interface PlaylistItem {
uid: string
begin: number
source: string
duration: number
in: number
out: number
audio?: string
category?: string
custom_filter?: string
class?: string
}
interface FileObject {
name: string
duration: number
}
interface FolderObject {
source: string
parent: string
folders: string[]
files: FileObject[]
}
interface SourceObject {
type: string
src: string
}
}