Files
ng-blog/web/src/app/shared/interfaces/auth.ts
2025-05-05 10:00:50 +02:00

14 lines
201 B
TypeScript

export interface User {
name: string;
password: string;
}
export interface LoginResponse {
token: string;
}
export interface Claims {
exp: number;
uid: number;
rl: string;
sub: string;
}