16 lines
255 B
TypeScript
16 lines
255 B
TypeScript
export type updateUser = {
|
|
id?: string;
|
|
updated_at?: Date;
|
|
email?: string;
|
|
full_name?: string;
|
|
avatar_url?: string;
|
|
provider?: string;
|
|
};
|
|
|
|
export type NotificationMessage = {
|
|
sound?: string;
|
|
title: string;
|
|
body: string;
|
|
data?: any;
|
|
};
|