IEpilogue interface
đ Descriptionâ
Interface that describes the properties to define a form epilogue within a form definition. An epilogue can be used by runners (that support it) to show a closing message when a form is completed.
đ Type declarationâ
interface IEpilogue { title?: string;ReadonlyOptional description?: string;ReadonlyOptional image?: string;ReadonlyOptional video?: string;ReadonlyOptional button?: { label: string; url: string; target: "self" | "blank"; };ReadonlyOptional repeatable?: boolean;ReadonlyOptional redirectUrl?: string;ReadonlyOptional }
đī¸ Propertiesâ
đˇī¸ button
â
Specifies an optional button with a hyperlink to show.
Typeâ
{
/* Specifies the label for the button. */
label: string;
/* Specifies the URL for the button. */
url: string;
/* Specifies if the button should open a new window/tab. */
target: "self" | "blank";
}
đˇī¸ description
â
Specifies the description (supports markdown).
Typeâ
string
đˇī¸ image
â
Specifies the URL of an image to show.
Typeâ
string
It is possible to embed images using Base64 encoding.
đˇī¸ redirectUrl
â
Specifies an URL to redirect to when the form ends.
Typeâ
string
When this property is used, all other properties are ignored.
đˇī¸ repeatable
â
Specifies if the form is repeatable. If set to true
a button will be shown to start a new form session.
Typeâ
boolean
đˇī¸ title
â
Specifies the title (supports markdown).
Typeâ
string
đˇī¸ video
â
Specifies the URL of a video to show. Currently, YouTube and Vimeo are supported. The shareable URL of the video needs to be supplied.
Typeâ
string