aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/author-interface.ts
blob: b57ce2a6b46a7299ae244f7977f6edbac56d4515 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import * as Sequelize from 'sequelize'

import { PodInstance } from './pod-interface'

export namespace AuthorMethods {
  export type FindOrCreateAuthorCallback = (err: Error, authorInstance?: AuthorInstance) => void
  export type FindOrCreateAuthor = (name: string, podId: number, userId: number, transaction: Sequelize.Transaction, callback: FindOrCreateAuthorCallback) => void
}

export interface AuthorClass {
  findOrCreateAuthor: AuthorMethods.FindOrCreateAuthor
}

export interface AuthorAttributes {
  name: string
}

export interface AuthorInstance extends AuthorClass, AuthorAttributes, Sequelize.Instance<AuthorAttributes> {
  id: number
  createdAt: Date
  updatedAt: Date

  podId: number
  Pod: PodInstance
}

export interface AuthorModel extends AuthorClass, Sequelize.Model<AuthorInstance, AuthorAttributes> {}