properly display username/emails of logged in user, and add logout button
This commit is contained in:
9
assets/js/definitions/index.d.ts
vendored
9
assets/js/definitions/index.d.ts
vendored
@@ -1,6 +1,13 @@
|
||||
type IntendedUser = {
|
||||
name: string;
|
||||
emails: string[];
|
||||
emails: OAuthEmail[];
|
||||
username: string;
|
||||
};
|
||||
|
||||
type OAuthEmail = {
|
||||
email: string;
|
||||
primary: boolean;
|
||||
verified: boolean;
|
||||
};
|
||||
|
||||
type IntendedLink = {
|
||||
|
Reference in New Issue
Block a user