@webda/shell
Version:
Deploy a Webda app or configure it
13 lines (12 loc) • 373 B
TypeScript
import { DeployerResources } from "@webda/core";
import { Deployer } from "./deployer.js";
export interface ShellDeployerResources extends DeployerResources {
scripts: string[];
}
/**
* @WebdaDeployer WebdaDeployer/ShellDeployer
*/
export default class ShellDeployer extends Deployer<ShellDeployerResources> {
deploy(): Promise<void>;
}
export { ShellDeployer };