UNPKG

@flex-development/tutils

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