9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
import type { LFOSettings } from '../stores/settings'
|
|
|
|
export interface TileState {
|
|
formula: string
|
|
engineParams: Record<string, number>
|
|
effectParams: Record<string, number | boolean | string>
|
|
lfoConfigs: LFOSettings
|
|
}
|