8 lines
122 B
TypeScript
8 lines
122 B
TypeScript
|
import { User } from "~/lib/api/user";
|
||
|
|
||
|
export type AuthResponse = {
|
||
|
user: User;
|
||
|
token: string;
|
||
|
expires_at: string;
|
||
|
};
|