UNPKG

ts-toolbelt

Version:

TypeScript's largest utility library

12 lines (11 loc) 231 B
import { Key } from '../Any/Key'; import { Record } from './Record'; /** * An [[Object]] * @example * ```ts * type object0 = {a: "hello"} * type string1 = {b: "world"} * ``` */ export declare type Object = Record<Key, any>;