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
â
Contains the label of the button that starts the form.
Typeâ
string
đˇī¸ description
â
Contains the description (supports markdown).
Typeâ
string
đˇī¸ image
â
Contains the URL of an image to show.
Typeâ
string
tip
It is possible to embed images using Base64 encoding.
đˇī¸ title
â
Contains the title (supports markdown).
Typeâ
string
đˇī¸ video
â
Contains 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