Form Controls
createFormField
Section titled “createFormField”export function createFormField( document: Document, options: FormFieldOptions,): HTMLLabelElement;createTextControl
Section titled “createTextControl”export function createTextControl( document: Document, placeholder: string,): HTMLInputElement;createSelectControl
Section titled “createSelectControl”export function createSelectControl( document: Document, options: readonly { value: string; label: string }[],): HTMLSelectElement;FormFieldOptions
Section titled “FormFieldOptions”interface FormFieldOptions { readonly label: string; readonly control: HTMLElement; readonly hint?: string; readonly className?: string}