aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video/video-tag-interface.ts
blob: f928cecffd0d5efcca59af4dd82c8bc08da4225d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import * as Sequelize from 'sequelize'

export namespace VideoTagMethods {
}

export interface VideoTagClass {
}

export interface VideoTagAttributes {
}

export interface VideoTagInstance extends VideoTagClass, VideoTagAttributes, Sequelize.Instance<VideoTagAttributes> {
  id: number
  createdAt: Date
  updatedAt: Date
}

export interface VideoTagModel extends VideoTagClass, Sequelize.Model<VideoTagInstance, VideoTagAttributes> {}