Type alias RecordPluginEvents

RecordPluginEvents: BasePluginEvents & {
    record-data-available: [blob: Blob];
    record-end: [blob: Blob];
    record-pause: [blob: Blob];
    record-progress: [duration: number];
    record-resume: [];
    record-start: [];
}

Type declaration

  • record-data-available: [blob: Blob]

    On every new recorded chunk

  • record-end: [blob: Blob]
  • record-pause: [blob: Blob]

    Fires when the recording is paused

  • record-progress: [duration: number]

    Fires continuously while recording

  • record-resume: []

    Fires when the recording is resumed

  • record-start: []

    Fires when the recording starts

Generated using TypeDoc