Type Alias IframeTransformDefinitionBeta

IframeTransformDefinition: {
    icon: string;
    reuse_tab?: boolean;
    title: string;
    type: "iframe";
    url: string;
}

Type representing an iframe transform definition.

Type declaration

  • Betaicon: string

    The icon for the iframe.

  • Optional Betareuse_tab?: boolean

    Whether to reuse the tab for the iframe.

  • Betatitle: string

    The title of the iframe.

  • Betatype: "iframe"

    The type of the transform, always 'iframe' for this type.

  • Betaurl: string

    The URL to load in the iframe.