feat(Notification & membership route)

This commit is contained in:
2025-10-26 00:16:25 +02:00
parent 868b9a837b
commit ac0a89e34d
19 changed files with 393 additions and 279 deletions

View File

@@ -41,3 +41,29 @@ export interface User {
updated_at: string;
[key: string]: unknown; // This allows for additional properties...
}
export interface FlashMessages {
success?: string;
error?: string;
warning?: string;
info?: string;
}
export interface Plans {
id: number;
identifier: string;
name: string;
price: number;
description?: string,
is_active: boolean;
}
export interface PageProps {
flash?: FlashMessages;
auth?: Auth;
plans?: Plans[];
[key: string]: unknown;
}