UNPKG

237 BTypeScriptView Raw
1import { List } from '../List/List';
2/**
3 * Get the keys of `A`
4 * @param A
5 * @returns [[Key]]
6 * @example
7 * ```ts
8 * ```
9 */
10export declare type Keys<A extends any> = A extends List ? Exclude<keyof A, keyof any[]> | number : keyof A;