1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-04 04:54:16 +08:00

20 lines
409 B
Go
Raw Normal View History

2022-08-31 23:16:10 +08:00
import { ReqPage } from '.';
export namespace Command {
export interface CommandInfo {
id: number;
name: string;
groupID: number;
2022-08-31 23:16:10 +08:00
command: string;
}
export interface CommandOperate {
id: number;
name: string;
groupID: number;
2022-08-31 23:16:10 +08:00
command: string;
}
export interface CommandSearch extends ReqPage {
info: string;
}
}