@typeform/embed
Version:
**Typeform/embed** is the core embed library that lets you embed typeforms to your website using vanilla JavaScript.
11 lines (10 loc) • 309 B
TypeScript
import { BaseOptions, EmbedType, UrlOptions } from '../base';
export declare const buildIframeSrc: (params: BuildIframeSrcOptions) => string;
type BuildIframeSrcOptions = {
domain?: string;
formId: string;
embedId: string;
type: EmbedType;
options: BaseOptions & UrlOptions;
};
export {};