Files
old-domensis/backend/src/interfaces/index.ts
2020-02-14 21:07:10 +01:00

27 lines
459 B
TypeScript

export interface ExportJob {
bookId: string,
type: string,
state: string,
created_at: Date,
updated_at: Date
}
export interface ImportJob {
bookId: string,
type: string,
url: string,
state: string,
created_at: Date,
updated_at: Date
}
export interface ExportJobsList {
pending: ExportJob[],
finished: ExportJob[],
}
export interface ImportJobsList {
pending: ImportJob[],
finished: ImportJob[]
}