From 2a20a19dc09941a56b6142624ef026c892c1186c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A4=A4=E0=A5=8B=E0=A4=AB?= =?UTF-8?q?=E0=A5=8D=E0=A4=AB=E0=A5=87=E0=A4=B2=E0=A4=B8=E0=A5=8D=E0=A4=95?= =?UTF-8?q?=E0=A5=8D=E0=A4=B0=E0=A4=BF=E0=A4=AA=E0=A5=8D=E0=A4=9F=E2=84=A2?= Date: Sat, 13 May 2023 15:04:25 +0000 Subject: [PATCH] refactor(editor): Add missing interface IUserListAction (no-changelog) (#6241) --- packages/editor-ui/src/Interface.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/editor-ui/src/Interface.ts b/packages/editor-ui/src/Interface.ts index 3cd3761bee..ee2365b8b8 100644 --- a/packages/editor-ui/src/Interface.ts +++ b/packages/editor-ui/src/Interface.ts @@ -587,6 +587,12 @@ export interface IVersionNotificationSettings { infoUrl: string; } +export interface IUserListAction { + label: string; + value: string; + guard?: (user: IUser) => boolean; +} + export interface IN8nPrompts { message: string; title: string;