2023-03-08 11:03:48 -05:00
|
|
|
export enum PluginType {
|
|
|
|
|
MediaPlayer = 'mediaplayer',
|
|
|
|
|
PreplayIntercept = 'preplayintercept',
|
|
|
|
|
Screensaver = 'screensaver',
|
|
|
|
|
SyncPlay = 'syncplay'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface Plugin {
|
|
|
|
|
name: string
|
|
|
|
|
id: string
|
|
|
|
|
type: PluginType | string
|
2023-03-08 17:47:40 -05:00
|
|
|
priority?: number
|
2023-03-08 11:03:48 -05:00
|
|
|
}
|