declare namespace Express { interface Request { user?: import('@prisma/client').User | null; } } declare type PrimitiveType = | string | number | boolean | symbol | null | undefined; declare type ConstructorOf = { new (): T; }; declare type DeepPartial = T extends Array ? DeepPartial[] : T extends ReadonlyArray ? ReadonlyArray> : T extends object ? { [K in keyof T]?: DeepPartial; } : T; declare type AFFiNEModule = | import('@nestjs/common').Type | import('@nestjs/common').DynamicModule;