A condition detected during a recording that might need the user's attention.

Unlike an AbortReason a signal never ends the recording, it reports something being off while recording continues, so your app can warn the user and let them fix it. A signal stays in the list emitted on the signals event for as long as the condition holds.

interface Signal {
    kind: "lowDiskSpace";
}

Properties

Properties

kind: "lowDiskSpace"

The kind of condition that was detected.

Generated using TypeDoc