import Deployment from './Deployment'

/**
 * Configuration file
 * @author Gabe Abrams
 */
type Config = {
  // Database name
  dbName?: string,
  // List of deployments
  deployments: Deployment[],
  // List of related clusters
  relatedClusters?: {
    name: string,
    cluster: string,
  }[],
};

export default Config;
