I have a function that only returns the value of prisma like so: ```tsx findUniqueOrThrow(args: Prisma.SomethingFindUniqueOrThrowArgs) { return this.prismaService.something.findUniqueOrThrow(args); } ``` but when I try to use it like this. I cannot access the rest of the models. ```tsx const something = findUniqueOrThrow({ id: 1, include: { somethingElse: true, }, }); // something.somethingElse cannot be found by typescript. ```