@typeform/embed
Version:
**Typeform/embed** is the core embed library that lets you embed typeforms to your website using vanilla JavaScript.
14 lines (13 loc) • 362 B
TypeScript
export type BaseOptions = {
/**
* List of hidden fields
*
* @type {Record<string,string>}
*/
hidden?: Record<string, string>;
/**
* Reopen the modal window with form in the same state as it wos when closed.
* For widget this applies only on mobile (without displayOnMobile option).
*/
keepSession?: boolean;
};