13 lines
375 B
TypeScript
13 lines
375 B
TypeScript
![]() |
export interface PopupWidgetComponentProps {
|
|||
|
quizId: string;
|
|||
|
dialogDimensions?: { width: string; height: string; };
|
|||
|
/**
|
|||
|
* Открыть квиз через X секунд, 0 - сразу
|
|||
|
*/
|
|||
|
autoShowQuizTime?: number | null;
|
|||
|
hideOnMobile?: boolean;
|
|||
|
openOnLeaveAttempt?: boolean;
|
|||
|
}
|
|||
|
|
|||
|
export type PopupWidgetParams = PopupWidgetComponentProps;
|