boolean
required
Indicate if the date should be shown as disabled
Data required for getActualSet function
Object, your date object.Data returned
Object | or null.Example Usage
Image

Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
SoftUI.formTypes.date(disabled),
{
optionId: "join_data",
optionName: "Join Date",
optionDescription: "At what time do you want me to join?",
optionType: SoftUI.formTypes.date(false),
getActualSet: ({guild}) => {
return timestamps[guild.id];
},
setNew: ({guild,newData}) => {
timestamps[guild.id] = newData;
return;
},
},

Was this page helpful?