@webda/shell
Version:
Deploy a Webda app or configure it
15 lines (14 loc) • 321 B
TypeScript
import { CoreModel } from "@webda/core";
/**
* @WebdaModel
*/
export default class Deployment extends CoreModel {
parameters: any;
resources: any;
services: any;
units: any[];
_type: string;
callback: any;
canAct(_ctx: any, _action: string): Promise<string | true>;
}
export { Deployment };