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

export namespace AvatarMethods {}

export interface AvatarClass {}

export interface AvatarAttributes {
  filename: string
}

export interface AvatarInstance extends AvatarClass, AvatarAttributes, Sequelize.Instance<AvatarAttributes> {
  createdAt: Date
  updatedAt: Date
}

export interface AvatarModel extends AvatarClass, Sequelize.Model<AvatarInstance, AvatarAttributes> {}