mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
export interface UserType {
|
|
id: number;
|
|
slug: string;
|
|
name: string;
|
|
profilePicture: string;
|
|
createdAt: Date;
|
|
mod: boolean;
|
|
admin: boolean;
|
|
}
|