Files
warren/frontend/types/auth.ts
2025-07-17 16:36:36 +02:00

6 lines
120 B
TypeScript

export type AuthSessionType = 'WarrenAuth';
export interface AuthSession {
type: AuthSessionType;
id: string;
}