17 lines
451 B
TypeScript
17 lines
451 B
TypeScript
import { PrismaService } from '../prisma/prisma.service';
|
|
export declare class UsersService {
|
|
private prisma;
|
|
constructor(prisma: PrismaService);
|
|
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>;
|
|
}
|