user interface, user data handling logic

This commit is contained in:
Rupenieks
2020-05-19 15:45:30 +02:00
parent 110f368bca
commit 011c78ad8e
2 changed files with 81 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
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;
}