SYMBOL INDEX (11 symbols across 1 files) FILE: src/annyang.ts constant MIN_RESTART_INTERVAL_MS (line 1) | const MIN_RESTART_INTERVAL_MS = 1000; constant RESTART_WARNING_INTERVAL (line 2) | const RESTART_WARNING_INTERVAL = 10; type CallbackMap (line 10) | interface CallbackMap { type CallbackType (line 23) | type CallbackType = keyof CallbackMap; type AnyFunction (line 26) | type AnyFunction = (...args: any[]) => void; type StoredCallback (line 28) | interface StoredCallback { type CommandCallback (line 234) | type CommandCallback = (...args: string[]) => void; type CommandsList (line 236) | interface CommandsList { type StartOptions (line 315) | interface StartOptions { type AnnyangState (line 537) | type AnnyangState = 'idle' | 'listening' | 'paused'; method state (line 651) | get state() {