fp/packages/next/app/lib/users.ts
Chris Grimmett d60c6ac3bb init
2024-01-20 08:16:14 -08:00

16 lines
243 B
TypeScript

import { IMeta } from "./types";
export interface IUser {
id: number;
attributes: {
username: string;
vanityLink?: string;
image: string;
}
}
export interface IUserResponse {
data: IUser;
meta: IMeta;
}