From ebfe7c3a937292bbdbd57826b4711f7ab83bcdca Mon Sep 17 00:00:00 2001 From: Tagaishi Date: Sun, 30 Jul 2023 14:17:57 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Renamed=20to=20ICommonWidgetOpti?= =?UTF-8?q?ons?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widgets/widgets.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/widgets.ts b/src/widgets/widgets.ts index 249614d16..527e83abe 100644 --- a/src/widgets/widgets.ts +++ b/src/widgets/widgets.ts @@ -43,7 +43,7 @@ export type IWidgetOptionValue = ( | IDraggableEditableListInputValue | IMultipleTextInputOptionValue | ILocationOptionValue -) & CommonOptions; +) & ICommonWidgetOptions; // Interface for data type interface DataType { @@ -51,7 +51,7 @@ interface DataType { value: string; } -interface CommonOptions { +interface ICommonWidgetOptions { info?: boolean; };