UNPKG

@flex-development/tutils

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