1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-21 01:09:17 +08:00

18 lines
359 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;
command: string;
}
export interface CommandOperate {
id: number;
name: string;
command: string;
}
export interface CommandSearch extends ReqPage {
info: string;
}
}