Add account type

This commit is contained in:
marzban-dev
2025-01-26 20:11:24 +03:30
parent 20e70f464d
commit 3d160793bc
+8
View File
@@ -14,6 +14,14 @@ declare global {
content: string;
};
type Account = {
first_name: string;
last_name: string;
email: string;
profile_photo: string;
phone: string;
}
type Product = {
id: number;
price: number;