@flex-development/tutils
Version:
TypeScript utilities
13 lines (12 loc) • 301 B
text/typescript
/**
* @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 };