frontAnswerer/lib/model/widget/popup.ts

13 lines
375 B
TypeScript
Raw Normal View History

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