main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
313 bytes
|
Line | |
---|
1 | import { Range } from '../Number/Range';
|
---|
2 | import { 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 | */
|
---|
12 | export declare type KeySet<From extends number, To extends number> = UnionOf<Range<From, To, '->'>>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.