UNPKG

@typeform/embed

Version:

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

9 lines (8 loc) 238 B
interface StyleString { style: string; } type HTMLIFrameElementWithStyleString = Omit<HTMLIFrameElement, 'style'> & StyleString; export type IframeOptions = { iframeProps?: Partial<HTMLIFrameElementWithStyleString>; }; export {};