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

18 lines
359 B
Go

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