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