1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Fix some documentation mistakes

This commit is contained in:
frankstrater 2021-08-31 15:08:24 +02:00 committed by Chocobozzz
parent c21a0aa855
commit fbd2d42358
2 changed files with 6 additions and 6 deletions

View file

@ -2,12 +2,12 @@ import { ConstantManager } from '../plugin-constant-manager.model'
export interface PluginVideoLicenceManager extends ConstantManager<number> {
/**
* @deprecated use `addLicence` instead
* @deprecated use `addConstant` instead
*/
addLicence: (licenceKey: number, licenceLabel: string) => boolean
/**
* @deprecated use `deleteLicence` instead
* @deprecated use `deleteConstant` instead
*/
deleteLicence: (licenceKey: number) => boolean
}