In JavaScript, this action is totally valid: ```js prisma.user.deleteMany() ``` In TypeScript, at least an empty object type is required ```ts prisma.user.deleteMany({}) ``` However, if I just want to delete all models, it should be possible to skip the `{}`.