🎨 Renamed to ICommonWidgetOptions

This commit is contained in:
Tagaishi
2023-07-30 14:17:57 +02:00
parent 47c7e84d25
commit ebfe7c3a93

View File

@@ -43,7 +43,7 @@ export type IWidgetOptionValue = (
| IDraggableEditableListInputValue<any>
| IMultipleTextInputOptionValue
| ILocationOptionValue
) & CommonOptions;
) & ICommonWidgetOptions;
// Interface for data type
interface DataType {
@@ -51,7 +51,7 @@ interface DataType {
value: string;
}
interface CommonOptions {
interface ICommonWidgetOptions {
info?: boolean;
};