import type { IServerGroupCommand } from '@spinnaker/core'; export interface IRollingPushTermination { concurrentRelaunches: number; relaunchAllInstances: boolean; totalRelaunches: number; [key: string]: any; } export interface IRollingPushCommand extends IServerGroupCommand { termination: IRollingPushTermination; }