From 3a5508653bd5692baf56327aaf06717366bbf99d Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sun, 1 Feb 2026 22:13:59 -0800 Subject: [PATCH] add missing CrossfadeStyle types --- src/shared/types/types.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/shared/types/types.ts b/src/shared/types/types.ts index 9a46079a7..11d58b146 100644 --- a/src/shared/types/types.ts +++ b/src/shared/types/types.ts @@ -101,6 +101,10 @@ export enum AuthState { } export enum CrossfadeStyle { + CONSTANT_POWER = 'constantPower', + CONSTANT_POWER_SLOW_CUT = 'constantPowerSlowCut', + CONSTANT_POWER_SLOW_FADE = 'constantPowerSlowFade', + DIPPED = 'dipped', EQUAL_POWER = 'equalPower', EXPONENTIAL = 'exponential', LINEAR = 'linear',