mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
refactor(editor): Add missing interface IUserListAction (no-changelog) (#6241)
This commit is contained in:
parent
1626782880
commit
2a20a19dc0
|
@ -587,6 +587,12 @@ export interface IVersionNotificationSettings {
|
||||||
infoUrl: string;
|
infoUrl: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface IUserListAction {
|
||||||
|
label: string;
|
||||||
|
value: string;
|
||||||
|
guard?: (user: IUser) => boolean;
|
||||||
|
}
|
||||||
|
|
||||||
export interface IN8nPrompts {
|
export interface IN8nPrompts {
|
||||||
message: string;
|
message: string;
|
||||||
title: string;
|
title: string;
|
||||||
|
|
Loading…
Reference in a new issue