aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/server/managers/plugin-video-licence-manager.model.ts
blob: 6efeadd7d29b3b0388637bbdc25129a5c7cdbb55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { ConstantManager } from '../plugin-constant-manager.model'

export interface PluginVideoLicenceManager extends ConstantManager<number> {
  /**
   * @deprecated use `addLicence` instead
   */
  addLicence: (licenceKey: number, licenceLabel: string) => boolean

  /**
   * @deprecated use `deleteLicence` instead
   */
  deleteLicence: (licenceKey: number) => boolean
}