@eoussama/firemitt
    Preparing search index...

    Type Alias TIframeOptions

    TIframeOptions:
        | { container?: never; element: HTMLIFrameElement }
        | { container: HTMLElement; element?: never }

    Options for embedding Fireguard in an iframe. Provide either an existing element or a container where Firemitt will create and manage the iframe automatically.

    Type Declaration

    • { container?: never; element: HTMLIFrameElement }
      • Optional Readonlycontainer?: never
      • Readonlyelement: HTMLIFrameElement

        An existing iframe element to use for embedding.

    • { container: HTMLElement; element?: never }
      • Readonlycontainer: HTMLElement

        A container element where Firemitt will create and append an iframe.

      • Optional Readonlyelement?: never