/** * @name ListTypes * @description ListTypes is a generic type that takes an object and returns a list of types * * @param {T} T * @returns {ListTypes} */ export type ListTypes = { [K in keyof T]: T[K]; }; //# sourceMappingURL=ListTypes.d.ts.map