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