UNPKG

@lou.codes/types

Version:
26 lines (25 loc) 631 B
import type { Entry } from "./Entry.js"; import type { KeyOf } from "./KeyOf.js"; import type { ValueOf } from "./ValueOf.js"; /** * Object or array {@link Entry}. * * @category Array * @category Object * @remarks * Get the {@link Entry} type out of an object or array. * @example * ```typescript * const object = { * "🟢": 1, * "🟩": 2, * }; * const entries: EntryOf<typeof object> = Object.entries(object)[0]; * ``` * @see {@link Entry} * @see {@link KeyOf} * @see {@link ValueOf} * * @template Type Object or array type. */ export type EntryOf<Type extends object> = Entry<KeyOf<Type>, ValueOf<Type>>;