1
0
Fork 0
peertube/server/models/video/video-tag-interface.ts

19 lines
436 B
TypeScript
Raw Normal View History

2017-05-22 18:58:25 +00:00
import * as Sequelize from 'sequelize'
export namespace VideoTagMethods {
}
export interface VideoTagClass {
}
export interface VideoTagAttributes {
}
2017-06-10 20:15:25 +00:00
export interface VideoTagInstance extends VideoTagClass, VideoTagAttributes, Sequelize.Instance<VideoTagAttributes> {
2017-05-22 18:58:25 +00:00
id: number
createdAt: Date
updatedAt: Date
}
export interface VideoTagModel extends VideoTagClass, Sequelize.Model<VideoTagInstance, VideoTagAttributes> {}