Files
1Panel/frontend/src/api/interface/command.ts
T

17 lines
342 B
Go

export namespace Command {
export interface CommandInfo {
id: number;
type: string;
name: string;
groupID: number;
command: string;
}
export interface CommandOperate {
id: number;
type: string;
name: string;
groupID: number;
command: string;
}
}