mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
add server to monorepo.
This commit is contained in:
14
packages/server/src/interfaces/Jobs.ts
Normal file
14
packages/server/src/interfaces/Jobs.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export interface IJobMeta {
|
||||
id: string;
|
||||
nextRunAt: Date;
|
||||
lastModifiedBy: null | Date;
|
||||
lockedAt: null | Date;
|
||||
lastRunAt: null | Date;
|
||||
failCount: number;
|
||||
failedAt: null | Date;
|
||||
lastFinishedAt: Date | null;
|
||||
running: boolean;
|
||||
queued: boolean;
|
||||
completed: boolean;
|
||||
failed: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user