Ariver
2026-05-18 8f11df460a247dfcaafd84ce3046605724d11998
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { writable } from "svelte/store";
 
export type IndicatorStatus =
  | "loading"
  | "ready"
  | "recording"
  | "processing"
  | "done"
  | "cancelled"
  | "no_voice"
  | "no_content"
  | "error"
  | "hidden";
 
export const indicatorVisible = writable<boolean>(false);
export const indicatorStatus = writable<IndicatorStatus>("hidden");
export const indicatorVolume = writable<number>(0);
export const hotkeyName = writable<string>("Ctrl");