Compute<T>: T extends Function
    ? T
    : {
        [K in keyof T]: T[K]
    } & unknown

Type Parameters

  • T