Interface MeetingProgressTimerOptions

interface MeetingProgressTimerOptions {
    meetingProgressTime: string;
    initialBackgroundColor?: string;
    position?:
        | "topLeft"
        | "topRight"
        | "bottomLeft"
        | "bottomRight";
    textStyle?: {
        [key: string]: string | number;
    };
    showTimer?: boolean;
}

Properties

meetingProgressTime: string
initialBackgroundColor?: string
position?:
    | "topLeft"
    | "topRight"
    | "bottomLeft"
    | "bottomRight"
textStyle?: {
    [key: string]: string | number;
}
showTimer?: boolean