UNPKG

ts-toolbelt

Version:

TypeScript's largest utility library

13 lines (12 loc) 330 B
import { ReadonlyKeys as OReadonlyKeys } from '../Object/ReadonlyKeys'; import { ObjectOf } from './ObjectOf'; import { List } from './List'; /** * Get the keys of `L` that are readonly * @param L * @returns [[Key]] * @example * ```ts * ``` */ export declare type ReadonlyKeys<L extends List> = OReadonlyKeys<ObjectOf<L>>;