16 lines
243 B
TypeScript
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;
|
||
|
}
|