UNPKG

@web5/agent

Version:
6 lines 200 B
/** * Infer the type of a type parameter. * * This is useful when you want to infer the type of a type parameter in a generic function. */ export type InferType<T> = T extends infer U ? U : never;