Interface StaticSelect

interface StaticSelect {
    select_items: { text: string; value: string }[];
    selected_item?: { text: string; value: string };
    text: string;
    type: "select";
}

Properties

select_items: { text: string; value: string }[]
selected_item?: { text: string; value: string }
text: string
type: "select"