Add plugin types

This commit is contained in:
Bill Thornton
2023-03-08 11:03:48 -05:00
parent ecb84ff351
commit 64ecc3eae7
18 changed files with 51 additions and 20 deletions
+13
View File
@@ -0,0 +1,13 @@
export enum PluginType {
MediaPlayer = 'mediaplayer',
PreplayIntercept = 'preplayintercept',
Screensaver = 'screensaver',
SyncPlay = 'syncplay'
}
export interface Plugin {
name: string
id: string
type: PluginType | string
priority: number
}