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 PluginVideoLicenceManager extends ConstantManager<number> {
|
|
|
|
/**
|
2021-08-31 08:08:24 -05:00
|
|
|
* @deprecated use `addConstant` instead
|
2021-06-29 09:02:05 -05:00
|
|
|
*/
|
2019-07-26 06:13:39 -05:00
|
|
|
addLicence: (licenceKey: number, licenceLabel: string) => boolean
|
|
|
|
|
2021-06-29 09:02:05 -05:00
|
|
|
/**
|
2021-08-31 08:08:24 -05:00
|
|
|
* @deprecated use `deleteConstant` instead
|
2021-06-29 09:02:05 -05:00
|
|
|
*/
|
2019-07-26 06:13:39 -05:00
|
|
|
deleteLicence: (licenceKey: number) => boolean
|
|
|
|
}
|