Jamjar/src/types/UserType.ts
2025-01-19 13:38:18 -05:00

9 lines
155 B
TypeScript

export interface UserType {
id: number;
slug: string;
name: string;
profilePicture: string;
createdAt: Date;
mod: boolean;
admin: boolean;
}