Just stopping now bc PC needs to reboot.
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
|
||||
export type updateUser = {
|
||||
id?: string;
|
||||
updated_at?: Date;
|
||||
@ -7,6 +8,17 @@ export type updateUser = {
|
||||
provider?: string;
|
||||
};
|
||||
|
||||
export type UserStatus = {
|
||||
id: string;
|
||||
user_id: string;
|
||||
status: string;
|
||||
created_at: string;
|
||||
profiles: {
|
||||
full_name: string;
|
||||
avatar_url: string | null;
|
||||
};
|
||||
};
|
||||
|
||||
export type NotificationMessage = {
|
||||
sound?: string;
|
||||
title: string;
|
||||
|
Reference in New Issue
Block a user