frontAnswerer/lib/model/widget/popup.ts

14 lines
433 B
TypeScript
Raw Normal View History

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