mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
17 lines
336 B
Go
17 lines
336 B
Go
export declare global {
|
|
interface CNode extends BaseModel {
|
|
name?: string;
|
|
ip?: string;
|
|
mac?: string;
|
|
hostname?: string;
|
|
description?: string;
|
|
key?: string;
|
|
is_master?: boolean;
|
|
status?: string;
|
|
enabled?: boolean;
|
|
active?: boolean;
|
|
current_runners?: number;
|
|
max_runners?: number;
|
|
}
|
|
}
|