Reviewed-on: #2 Co-authored-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com> Co-committed-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com>
12 lines
192 B
TypeScript
12 lines
192 B
TypeScript
export interface AuthUser {
|
|
// meta fields
|
|
_id?: string | null;
|
|
created_at: string;
|
|
updated_at: string;
|
|
|
|
// model fields
|
|
username: string;
|
|
email: string;
|
|
is_active: boolean;
|
|
}
|