@flex-development/tutils
Version:
TypeScript utilities
14 lines (10 loc) • 291 B
text/typescript
/**
* @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 }