The required UIStructure of Promptifier

interface UIStructure {
    acceptBtn: Button;
    bg: Frame;
    content: Frame | ScrollingFrame;
    declineBtn: Button;
    title: TextLabel;
}

Properties

acceptBtn: Button

The confirm, yes and accept button that will fulfill as accepted.

bg: Frame

A Frame representing the background of the Prompt.

content: Frame | ScrollingFrame

A Frame | ScrollingFrame representing the container of the Prompt content.

declineBtn: Button

The reject, no and decline button that will fulfill as declined.

title: TextLabel

A TextLabel which will act as the title/header for this Prompt.

Generated using TypeDoc