source: node_modules/ts-toolbelt/out/List/KeySet.d.ts@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 313 bytes
Line 
1import { Range } from '../Number/Range';
2import { UnionOf } from './UnionOf';
3/**
4 * Create a set of keys
5 * @param From to start with
6 * @param To to end with
7 * @returns [[Key]]
8 * @example
9 * ```ts
10 * ```
11 */
12export declare type KeySet<From extends number, To extends number> = UnionOf<Range<From, To, '->'>>;
Note: See TracBrowser for help on using the repository browser.