/**
 * Useful when you want to quickly define a value of a specific type
 * for testing purposes
 */
export const fakeTypedVal = <T>(): T => ({} as T)
