()
| 140 | } |
| 141 | |
| 142 | getSource(): "monotonic" | "audio" { |
| 143 | if (this._audioSource && this._playStartMs !== null) { |
| 144 | if ("currentTimeSeconds" in this._audioSource) return "audio"; |
| 145 | const { el } = this._audioSource; |
| 146 | if (!el.paused && Number.isFinite(el.currentTime)) return "audio"; |
| 147 | } |
| 148 | return "monotonic"; |
| 149 | } |
| 150 | |
| 151 | snapshot(): TransportClockSnapshot { |
| 152 | return { |
no outgoing calls
no test coverage detected