1
0
Fork 0
peertube/shared/models/plugins/plugin-video-category-manager.model.ts
Chocobozzz ee286591a5
Plugins can update video constants
Categories, licences and languages
2019-07-26 15:18:30 +02:00

5 lines
171 B
TypeScript

export interface PluginVideoCategoryManager {
addCategory: (categoryKey: number, categoryLabel: string) => boolean
deleteCategory: (categoryKey: number) => boolean
}