first commit
This commit is contained in:
16
apps/api/dist/users/users.controller.d.ts
vendored
Normal file
16
apps/api/dist/users/users.controller.d.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import { UsersService } from './users.service';
|
||||
export declare class UsersController {
|
||||
private readonly users;
|
||||
constructor(users: UsersService);
|
||||
me(): Promise<{
|
||||
id: string;
|
||||
email: string | null;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
status: string;
|
||||
name: string | null;
|
||||
avatarUrl: string | null;
|
||||
defaultCurrency: string | null;
|
||||
timeZone: string | null;
|
||||
} | null>;
|
||||
}
|
||||
Reference in New Issue
Block a user