You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
767 B
32 lines
767 B
export interface ProcessExceptionInterface {
|
|
message: string,
|
|
file: string,
|
|
line: number,
|
|
code: number,
|
|
trace: any[],
|
|
}
|
|
|
|
export interface ProcessProgressInterface {
|
|
total: number,
|
|
progress: number,
|
|
memory: any[],
|
|
}
|
|
|
|
export interface ProcessesResponseInterface {
|
|
id: string
|
|
lock: string | null
|
|
containerUuid: string | null
|
|
pid: bigint | null
|
|
name: string
|
|
options: Record<string, any>
|
|
arguments: Record<string, any>
|
|
exception: ProcessExceptionInterface | null
|
|
progress: ProcessProgressInterface | null
|
|
outputId: string | null
|
|
createdAt: string
|
|
updatedAt: string | null
|
|
startedAt: string | null
|
|
pausedAt: string | null
|
|
cancelledAt: string | null
|
|
completedAt: string | null
|
|
} |