16 lines
442 B
TypeScript
16 lines
442 B
TypeScript
![]() |
import { ButtonWidgetComponentProps } from "./button";
|
||
|
|
||
|
export type ContainerWidgetComponentProps = ButtonWidgetComponentProps & {
|
||
|
quizId: string;
|
||
|
showButtonOnMobile?: boolean;
|
||
|
dimensions?: { width: string; height: string; };
|
||
|
};
|
||
|
|
||
|
export type ContainerWidgetParams = ContainerWidgetComponentProps & {
|
||
|
selector: string;
|
||
|
/**
|
||
|
* In seconds, null - polling disabled
|
||
|
*/
|
||
|
selectorPollingTimeLimit?: number | null;
|
||
|
};
|