export type DeployConfig = Partial<Record<DeployMethod, DeployMethodConfig>>;
export type DeployMethod = 'gitSource' | 'api' | 'dashboard' | 'internal';
export type DeployMethodConfig = {
    status: 'enabled' | 'disabled';
};
