Foxnouns.NET/Foxnouns.Frontend/app/lib/api/auth.ts

8 lines
122 B
TypeScript
Raw Normal View History

2024-09-10 21:24:40 +02:00
import { User } from "~/lib/api/user";
export type AuthResponse = {
user: User;
token: string;
expires_at: string;
};