mediasfu-angular
Version:
mediasfu-angular - Angular 17/18/19 WebRTC SDK for video conferencing, webinars, broadcasts, live streaming, chat, recording, whiteboard, and AI agents. Prebuilt rooms and fully custom UIs.
25 lines (24 loc) • 811 B
TypeScript
import * as i0 from "@angular/core";
/**
* RecordTimerWidget displays the current recording progress time.
*
* @selector app-record-timer-widget
* @standalone true
* @imports CommonModule
*
* @inputs
* - `recordingProgressTime` (string): The time to display as recording progress.
*
* @example
* ```html
* <app-record-timer-widget [recordingProgressTime]="'00:05:23'"></app-record-timer-widget>
* ```
**/
export declare class RecordTimerWidget {
recordingProgressTime: string;
constructor(recordingProgressTime: string);
get displayTime(): string;
get ariaLabel(): string;
static ɵfac: i0.ɵɵFactoryDeclaration<RecordTimerWidget, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<RecordTimerWidget, "app-record-timer-widget", never, {}, {}, never, never, true, never>;
}