getRecordingSession function exported
Last updated: 2026-03-05T11:49:57.418Z
Metrics
LOC: 3
Complexity: 2
Params: 0
Signature
getRecordingSession(): : RecordingSession | null
Summary
Returns the current recording session (or null if not recording). After stopRecording(), returns the stopped session so it can still be exported. Returns null only after clearSession() or a new startRecording().
Source Code
export function getRecordingSession(): RecordingSession | null {
return session ?? stoppedSession;
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| FillableElement | uses |