UNPKG

type-plus

Version:
5 lines (4 loc) 111 B
/** * Gets the properties of an object type. */ export type Properties<T> = { [k in keyof T]: T[k] } // & {}