Skip to content

FrequencyRulerStatus

type FrequencyRulerStatus =
| {
error?: undefined;
state: "idle" | "rendering" | "ready" | "destroyed";
}
| {
error: Error;
state: "error";
};