2021-07-28 03:46:32 -05:00
|
|
|
import { ConstantManager } from '../plugin-constant-manager.model'
|
2021-06-29 09:02:05 -05:00
|
|
|
|
|
|
|
export interface PluginVideoCategoryManager extends ConstantManager<number> {
|
|
|
|
/**
|
|
|
|
* @deprecated use `addConstant` instead
|
|
|
|
*/
|
2019-07-26 06:13:39 -05:00
|
|
|
addCategory: (categoryKey: number, categoryLabel: string) => boolean
|
|
|
|
|
2021-06-29 09:02:05 -05:00
|
|
|
/**
|
|
|
|
* @deprecated use `deleteConstant` instead
|
|
|
|
*/
|
2019-07-26 06:13:39 -05:00
|
|
|
deleteCategory: (categoryKey: number) => boolean
|
|
|
|
}
|