UNPKG

@flex-development/tutils

Version:
14 lines (10 loc) 291 B
/** * @file Type Definitions - ObjectPlain * @module tutils/types/ObjectPlain */ import type IndexSignature from './index-signature' /** * Type representing any plain object (`{}`) value. */ type ObjectPlain = { [Key in IndexSignature]?: any } export { type ObjectPlain as default }