aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/plugin-video-licence-manager.model.ts
blob: 82a634d3a9b55c748aac96a1cc177674657bd744 (plain) (blame)
1
2
3
4
5
export interface PluginVideoLicenceManager {
  addLicence: (licenceKey: number, licenceLabel: string) => boolean

  deleteLicence: (licenceKey: number) => boolean
}