import { Deployment } from "./Deployment"; export class Deployments { testdummy: Deployment; csv: Deployment; segwit: Deployment; mast: Deployment; static postProcess(deployments: Deployments) { Deployment.postProcess(deployments.testdummy); Deployment.postProcess(deployments.csv); Deployment.postProcess(deployments.segwit); Deployment.postProcess(deployments.mast); } }