fp/services/next/app/lib/users.ts

16 lines
253 B
TypeScript
Raw Normal View History

2024-07-15 16:07:04 +00:00
import { IMeta } from "@futureporn/types";
2024-01-20 16:16:14 +00:00
export interface IUser {
id: number;
attributes: {
username: string;
vanityLink?: string;
image: string;
}
}
export interface IUserResponse {
data: IUser;
meta: IMeta;
}