This commit is contained in:
Saeed Vaziry
2025-05-29 20:05:13 +02:00
parent 984c1f3a8e
commit 8b6f65db97
20 changed files with 777 additions and 150 deletions

13
resources/js/types/worker.d.ts vendored Normal file
View 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;
}