]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/models/account/account-follow-interface.ts
Begin activitypub
[github/Chocobozzz/PeerTube.git] / server / models / account / account-follow-interface.ts
1 import * as Sequelize from 'sequelize'
2 import * as Promise from 'bluebird'
3
4 import { VideoRateType } from '../../../shared/models/videos/video-rate.type'
5
6 export namespace AccountFollowMethods {
7 }
8
9 export interface AccountFollowClass {
10 }
11
12 export interface AccountFollowAttributes {
13 accountId: number
14 targetAccountId: number
15 }
16
17 export interface AccountFollowInstance extends AccountFollowClass, AccountFollowAttributes, Sequelize.Instance<AccountFollowAttributes> {
18 id: number
19 createdAt: Date
20 updatedAt: Date
21 }
22
23 export interface AccountFollowModel extends AccountFollowClass, Sequelize.Model<AccountFollowInstance, AccountFollowAttributes> {}