fix(ts): refactor codebase for capacitor setup

This commit is contained in:
shafin-r
2025-07-28 20:22:04 +06:00
parent e091a78bdb
commit 0bca09f8ef
31 changed files with 458 additions and 384 deletions

15
types/auth.d.ts vendored
View File

@ -6,3 +6,18 @@ export interface UserData {
email: string;
phone: string;
}
export interface RegisterForm {
name: string;
institution: string;
sscRoll: string;
hscRoll: string;
email: string;
phone: string;
password: string;
}
export interface LoginForm {
email: string;
password: string;
}