PeerTube/server/models/video/video-channel-share-interfa...

34 lines
1.2 KiB
TypeScript
Raw Normal View History

2017-11-16 14:55:01 +00:00
import * as Bluebird from 'bluebird'
2017-11-15 16:56:21 +00:00
import * as Sequelize from 'sequelize'
import { Transaction } from 'sequelize'
2017-11-15 16:56:21 +00:00
import { AccountInstance } from '../account/account-interface'
import { VideoChannelInstance } from './video-channel-interface'
export namespace VideoChannelShareMethods {
export type LoadAccountsByShare = (videoChannelId: number, t: Transaction) => Bluebird<AccountInstance[]>
export type Load = (accountId: number, videoId: number, t: Transaction) => Bluebird<VideoChannelShareInstance>
2017-11-15 16:56:21 +00:00
}
export interface VideoChannelShareClass {
2017-11-16 14:55:01 +00:00
loadAccountsByShare: VideoChannelShareMethods.LoadAccountsByShare
load: VideoChannelShareMethods.Load
2017-11-15 16:56:21 +00:00
}
export interface VideoChannelShareAttributes {
accountId: number
videoChannelId: number
}
export interface VideoChannelShareInstance
extends VideoChannelShareClass, VideoChannelShareAttributes, Sequelize.Instance<VideoChannelShareAttributes> {
id: number
createdAt: Date
updatedAt: Date
Account?: AccountInstance
VideoChannel?: VideoChannelInstance
}
export interface VideoChannelShareModel
extends VideoChannelShareClass, Sequelize.Model<VideoChannelShareInstance, VideoChannelShareAttributes> {}