refactor(editor): Add missing interface IUserListAction (no-changelog) (#6241)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2023-05-13 15:04:25 +00:00 committed by GitHub
parent 1626782880
commit 2a20a19dc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;