ExactlyAnyPropertyKeys<T>: {
    [K in keyof T]: IsExactlyAny<T[K]> extends true
        ? K
        : never
}[keyof T]

Type Parameters

  • T