interface IApi {
    getForm(formId): IFormApi;
    getForms(): IFormApi[];
}

Methods

  • Returns form object with the matching ID

    Parameters

    • formId: string

      ID of the form

    Returns IFormApi

  • Returns all available forms on the page

    Returns IFormApi[]