Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | export type Prettify<T> = { [K in keyof T]: T[K] } & {} export type UnionToIntersection<U> = ( U extends any ? (k: U) => void : never ) extends (k: infer I) => void ? I : never // make keys required but keep undefined values export type LooseRequired<T> = { [P in keyof (T & Required<T>)]: T[P] } // If the type T accepts type "any", output type Y, otherwise output type N. // https://stackoverflow.com/questions/49927523/disallow-call-with-any/49928360#49928360 export type IfAny<T, Y, N> = 0 extends 1 & T ? Y : N export type IsKeyValues<T, K = string> = IfAny< T, false, T extends object ? (keyof T extends K ? true : false) : false > /** * Utility for extracting the parameters from a function overload (for typed emits) * https://github.com/microsoft/TypeScript/issues/32164#issuecomment-1146737709 */ export type OverloadParameters<T extends (...args: any[]) => any> = Parameters< OverloadUnion<T> > type OverloadProps<TOverload> = Pick<TOverload, keyof TOverload> type OverloadUnionRecursive< TOverload, TPartialOverload = unknown, > = TOverload extends (...args: infer TArgs) => infer TReturn ? TPartialOverload extends TOverload ? never : | OverloadUnionRecursive< TPartialOverload & TOverload, TPartialOverload & ((...args: TArgs) => TReturn) & OverloadProps<TOverload> > | ((...args: TArgs) => TReturn) : never type OverloadUnion<TOverload extends (...args: any[]) => any> = Exclude< OverloadUnionRecursive<(() => never) & TOverload>, TOverload extends () => never ? never : () => never > |