UNPKG

231 BTypeScriptView Raw
1import { Key } from '../Any/Key';
2import { Record } from './Record';
3/**
4 * An [[Object]]
5 * @example
6 * ```ts
7 * type object0 = {a: "hello"}
8 * type string1 = {b: "world"}
9 * ```
10 */
11export declare type Object = Record<Key, any>;