While trying to extend the functionality of the `createMock` function, I tried to pass a generic to it. This makes it crash. ``` function createCustomMock<T extends object>(): T { return createMock<T>(); // ReferenceError: t is not defined } ```