This is odd behavior: ```ts const fns = [ (): number => 1, (): string => '12345', (): Date => new Date(), ] type e = ReturnType<typeof fns[0]> //string | number | Date ```
This is odd behavior: