UNPKG

@flex-development/tutils

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