SYMBOL INDEX (13 symbols across 2 files) FILE: src/timer.d.ts type Status (line 3) | type Status = "initialized" | "started" | "paused" | "stopped"; type StartHandler (line 6) | type StartHandler = (durationMs: number) => void; type TickHandler (line 8) | type TickHandler = (remainingMs: number) => void; type PauseHandler (line 10) | type PauseHandler = () => void; type StopHandler (line 12) | type StopHandler = () => void; type EndHandler (line 14) | type EndHandler = () => void; type Options (line 16) | interface Options { type EventName (line 32) | type EventName = "start" | "tick" | "pause" | "stop" | "end"; type EventKey (line 34) | type EventKey = "onstart" | "ontick" | "onpause" | "onstop" | "onend"; type Timer (line 38) | interface Timer { FILE: src/timer.js function end (line 122) | function end() { function trigger (line 128) | function trigger(event) { function clear (line 134) | function clear(clearDuration) {