Files
crawlab/frontend/crawlab-ui/typings/interfaces/models/node.d.ts

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;
}
}