IPrologue interface
đ Descriptionâ
Interface that describes the properties to define a form prologue within a form definition. A prologue can be used by runners (that support it) to show a welcome message before starting the actual form.
đ Type declarationâ
interface IPrologue { title?: string;ReadonlyOptional description?: string;ReadonlyOptional image?: string;ReadonlyOptional video?: string;ReadonlyOptional button?: string;ReadonlyOptional }
đąī¸ Hover with the mouse over a property name for a tooltip with the description of that property. Click it for more information.
đī¸ Propertiesâ
đˇī¸ buttonâ
Specifies the label of the button that starts the form.
Typeâ
string
đˇī¸ descriptionâ
Specifies the description (supports markdown).
Typeâ
string
đˇī¸ imageâ
Specifies the URL of an image to show.
Typeâ
string
tip
It is possible to embed images using Base64 encoding.
đˇī¸ 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