reciple 5.4.3 → 5.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -186,8 +186,6 @@ export interface MessageCommandData extends SharedCommandDataProperties, Partial
|
|
|
186
186
|
* Message command option object data interface
|
|
187
187
|
*/
|
|
188
188
|
export interface MessageCommandOptionData extends SharedCommandDataProperties {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
required: boolean;
|
|
192
|
-
validator: (value: string) => Awaitable<boolean>;
|
|
189
|
+
required?: boolean;
|
|
190
|
+
validator?: (value: string) => Awaitable<boolean>;
|
|
193
191
|
}
|