Apply suggestion from @robintown

Co-authored-by: Robin <robin@robin.town>
This commit is contained in:
fkwp
2026-09-24 11:22:40 +02:00
committed by GitHub
co-authored by Robin
parent 2aa7ff6ccc
commit 1ab1ddfe8c
+1 -1
View File
@@ -13,7 +13,7 @@ import { type Behavior } from "./Behavior";
/** What the microphone picks up, or why it can't be read. */ /** What the microphone picks up, or why it can't be read. */
export type MicrophoneState = export type MicrophoneState =
// A Behavior, so a changing level can be drawn without re-rendering. // A Behavior, so a changing level can be drawn without re-rendering.
| { type: "level"; level: Behavior<number> } | { type: "level"; level$: Behavior<number> }
| { type: "permission-denied" } | { type: "permission-denied" }
| { type: "no-device" }; | { type: "no-device" };