Files
tabungin/apps/api/dist/users/users.controller.d.ts
2025-10-09 12:52:41 +07:00

17 lines
450 B
TypeScript

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>;
}