UNPKG

dce-dev-wizard

Version:

Wizard for managing development apps at Harvard DCE.

14 lines (13 loc) 229 B
/** * One deployment instance * @author Gabe Abrams */ declare type Deployment = { name: string; app: string; profile: string; customStackInfo?: { [k: string]: any; }; }; export default Deployment;