mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
#591 - workers
This commit is contained in:
13
resources/js/types/worker.d.ts
vendored
Normal file
13
resources/js/types/worker.d.ts
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
export interface Worker {
|
||||
id: number;
|
||||
server_id: number;
|
||||
command: string;
|
||||
user: string;
|
||||
auto_start: boolean;
|
||||
auto_restart: boolean;
|
||||
numprocs: number;
|
||||
status: string;
|
||||
status_color: 'gray' | 'success' | 'info' | 'warning' | 'danger';
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
}
|
Reference in New Issue
Block a user