/**
* enforces empty object (= objectwith no props).
*
* Type"{}"isnot the same, instead of representing an empty object, it represents any value except null and undefined.
*
* @export
* @since 1.0.0
*/
export type EmptyObject = Record<PropertyKey, never>;