mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
export interface IUser {
|
|
client_gravatar?: boolean;
|
|
include_custom_profile_fields?: boolean;
|
|
full_name?: string;
|
|
is_admin?: boolean;
|
|
is_guest?: boolean;
|
|
profile_data?: [{}];
|
|
email?: string;
|
|
password?: string;
|
|
short_name?: string;
|
|
}
|