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

22 lines
489 B
Go

import { CommonModel, ReqPage } from '.';
export namespace Runtime {
export interface Runtime extends CommonModel {
name: string;
appDetailId: string;
image: string;
workDir: string;
dockerCompose: string;
env: string;
params: string;
type: string;
}
export interface RuntimeReq extends ReqPage {
name: string;
}
export interface RuntimeDTO extends Runtime {
websites: string[];
}
}