mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
28 lines
779 B
TypeScript
28 lines
779 B
TypeScript
import * as Sequelize from 'sequelize'
|
|
import { AccountInstance } from '../account/account-interface'
|
|
import { VideoChannelInstance } from './video-channel-interface'
|
|
|
|
export namespace VideoChannelShareMethods {
|
|
}
|
|
|
|
export interface VideoChannelShareClass {
|
|
}
|
|
|
|
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> {}
|