2021-07-28 10:46:32 +02:00
|
|
|
import { ConstantManager } from '../plugin-constant-manager.model'
|
2021-06-29 16:02:05 +02:00
|
|
|
|
|
|
|
export interface PluginVideoLicenceManager extends ConstantManager<number> {
|
|
|
|
/**
|
2021-08-31 15:08:24 +02:00
|
|
|
* @deprecated use `addConstant` instead
|
2021-06-29 16:02:05 +02:00
|
|
|
*/
|
2019-07-26 13:13:39 +02:00
|
|
|
addLicence: (licenceKey: number, licenceLabel: string) => boolean
|
|
|
|
|
2021-06-29 16:02:05 +02:00
|
|
|
/**
|
2021-08-31 15:08:24 +02:00
|
|
|
* @deprecated use `deleteConstant` instead
|
2021-06-29 16:02:05 +02:00
|
|
|
*/
|
2019-07-26 13:13:39 +02:00
|
|
|
deleteLicence: (licenceKey: number) => boolean
|
|
|
|
}
|