17 lines
450 B
TypeScript
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>;
|
|
}
|