Files
dttmr-fe/src/types/auth.ts
T
2026-08-21 17:09:32 +02:00

14 lines
209 B
TypeScript

export interface LoginPayload {
email: string
password: string
}
export interface RefreshPayload {
refresh_token: string
}
export interface TokenPair {
access_token: string
refresh_token: string
}