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

export namespace TagMethods {
  export type FindOrCreateTags = (tags, transaction, callback) => void
}

export interface TagClass {
  findOrCreateTags: TagMethods.FindOrCreateTags
}

export interface TagAttributes {
  name: string
}

export interface TagInstance extends TagClass, TagAttributes, Sequelize.Instance<TagAttributes> {
  id: number
}

export interface TagModel extends TagClass, Sequelize.Model<TagInstance, TagAttributes> {}