fix: removing unused navigate

This commit is contained in:
Chubby Granny Chaser 2025-01-15 17:08:22 +00:00
parent c59b039eb4
commit 8b47082047
No known key found for this signature in database
7 changed files with 74 additions and 0 deletions

23
src/types/level.types.ts Normal file
View file

@ -0,0 +1,23 @@
export type SubscriptionStatus = "active" | "pending" | "cancelled";
export interface Subscription {
id: string;
status: SubscriptionStatus;
plan: { id: string; name: string };
expiresAt: string | null;
paymentMethod: "pix" | "paypal";
}
export interface Auth {
accessToken: string;
refreshToken: string;
tokenExpirationTimestamp: number;
}
export interface User {
id: string;
displayName: string;
profileImageUrl: string | null;
backgroundImageUrl: string | null;
subscription: Subscription | null;
}