| 41 | } |
| 42 | |
| 43 | interface LiquidEtherWebGL { |
| 44 | output?: { simulation?: { options: SimOptions; resize: () => void } }; |
| 45 | autoDriver?: { |
| 46 | enabled: boolean; |
| 47 | speed: number; |
| 48 | resumeDelay: number; |
| 49 | rampDurationMs: number; |
| 50 | mouse?: { autoIntensity: number; takeoverDuration: number }; |
| 51 | forceStop: () => void; |
| 52 | }; |
| 53 | resize: () => void; |
| 54 | start: () => void; |
| 55 | pause: () => void; |
| 56 | dispose: () => void; |
| 57 | } |
| 58 | |
| 59 | const defaultColors = ["#5227FF", "#FF9FFC", "#B19EEF"]; |
| 60 |
nothing calls this directly
no outgoing calls
no test coverage detected