PeerTube/shared/models/plugins/server/managers/plugin-video-privacy-manage...

14 lines
430 B
TypeScript
Raw Normal View History

2021-05-11 12:04:47 +02:00
import { VideoPrivacy } from '../../../videos/video-privacy.enum'
import { ConstantManager } from '@shared/models/plugins/server/plugin-constant-manager.model'
export interface PluginVideoPrivacyManager extends ConstantManager<VideoPrivacy> {
/**
* PUBLIC = 1,
* UNLISTED = 2,
* PRIVATE = 3
* INTERNAL = 4
* @deprecated use `deleteConstant` instead
*/
deletePrivacy: (privacyKey: VideoPrivacy) => boolean
}