import type { LightsEffect } from './LightsEffect';

export interface ShowLightsEffectParams {
  /** Address of the light to exec the effect */
  addresses: number[] | 'all';
  effect: LightsEffect;
  /** Duration of the change of the speed in seconds 1 - 25s */
  timeDuration: number;
}
