feat: add TypeScript interfaces for authentication and server statistics

This commit is contained in:
Juergen Kunz
2025-06-08 12:09:09 +00:00
parent 7bda406624
commit 415e28038d
4 changed files with 112 additions and 1 deletions

View File

@ -0,0 +1,8 @@
export interface IIdentity {
jwt: string;
userId: string;
name: string;
expiresAt: number;
role?: string;
type?: string;
}