const something = findUniqueOrThrow({
id: 1,
include: {
somethingElse: true,
},
});
// something.somethingElse cannot be found by typescript.
const something = findUniqueOrThrow({
id: 1,
include: {
somethingElse: true,
},
});
// something.somethingElse cannot be found by typescript.