aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video-tag-interface.ts
blob: 468827b8c77093521424a522f13107f100e0a615 (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 Sequelize.Instance<VideoTagAttributes> {
  id: number
  createdAt: Date
  updatedAt: Date
}

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