2024-05-13 17:36:27 +00:00
|
|
|
|
export interface PopupWidgetComponentProps {
|
2024-05-31 16:41:18 +00:00
|
|
|
|
quizId: string;
|
|
|
|
|
dialogDimensions?: { width: string; height: string };
|
|
|
|
|
/**
|
|
|
|
|
* Открыть квиз через X секунд, 0 - сразу, null - не открывать
|
|
|
|
|
*/
|
|
|
|
|
autoShowQuizTime?: number | null;
|
|
|
|
|
hideOnMobile?: boolean;
|
|
|
|
|
openOnLeaveAttempt?: boolean;
|
|
|
|
|
fullScreen?: boolean;
|
2024-05-13 17:36:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type PopupWidgetParams = PopupWidgetComponentProps;
|