UNPKG

330 BTypeScriptView Raw
1import { OptionalKeys as OOptionalKeys } from '../Object/OptionalKeys';
2import { ObjectOf } from './ObjectOf';
3import { List } from './List';
4/**
5 * Get the keys of `L` that are optional
6 * @param L
7 * @returns [[Key]]
8 * @example
9 * ```ts
10 * ```
11 */
12export declare type OptionalKeys<L extends List> = OOptionalKeys<ObjectOf<L>>;