temporary

This commit is contained in:
2025-09-30 10:56:38 +02:00
commit 26529d699f
7906 changed files with 1688938 additions and 0 deletions

17
src/types/effects.ts Normal file
View File

@ -0,0 +1,17 @@
export interface EffectParameter {
id: string
label: string
min: number
max: number
default: number
step: number
unit?: string
}
export interface EffectConfig {
id: string
name: string
parameters: EffectParameter[]
}
export type EffectValues = Record<string, number>