UNPKG

@typeform/embed

Version:

**Typeform/embed** is the core embed library that lets you embed typeforms to your website using vanilla JavaScript.

20 lines (19 loc) 477 B
export type BaseOptions = { /** * List of hidden fields * * @type {Record<string,string>} */ hidden?: Record<string, string>; /** * Display embedded typeform as conversation * * @type {boolean} */ chat?: boolean; /** * 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; };