UNPKG

387 BTypeScriptView Raw
1import { KeySet } from './KeySet';
2import { Omit } from './Omit';
3import { List } from './List';
4/**
5 * Remove out of `L` a range of entries
6 * @param L to remove from
7 * @param From to start from
8 * @param To to end with
9 * @returns [[List]]
10 * @example
11 * ```ts
12 * ```
13 */
14export declare type Remove<L extends List, From extends number, To extends number> = Omit<L, KeySet<From, To>>;