UNPKG

@flex-development/tutils

Version:
12 lines (9 loc) 213 B
/** * @file Type Definitions - ObjectEmpty * @module tutils/types/ObjectEmpty */ /** * Type representing any empty object. */ type ObjectEmpty = Record<string, never> export { type ObjectEmpty as default }