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:
833 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | import { Key } from './_Internal';
|
---|
| 2 | import { Either as OEither } from '../Object/Either';
|
---|
| 3 | import { ObjectOf } from './ObjectOf';
|
---|
| 4 | import { _ListOf } from '../Object/ListOf';
|
---|
| 5 | import { List } from './List';
|
---|
| 6 | import { Boolean } from '../Boolean/_Internal';
|
---|
| 7 | /**
|
---|
| 8 | * Split `L` into a [[Union]] with `K` keys in such a way that none of
|
---|
| 9 | * the keys are ever present with one another within the different unions.
|
---|
| 10 | * @param L to split
|
---|
| 11 | * @param K to split with
|
---|
| 12 | * @param strict (?=`1`) to force excess property checks https://github.com/microsoft/TypeScript/issues/20863
|
---|
| 13 | * @returns [[List]] [[Union]]
|
---|
| 14 | * @example
|
---|
| 15 | * ```ts
|
---|
| 16 | * ```
|
---|
| 17 | */
|
---|
| 18 | export declare type Either<L extends List, K extends Key, strict extends Boolean = 1> = OEither<ObjectOf<L>, `${K & number}` | K, strict> extends infer OE ? OE extends unknown ? _ListOf<OE & {}> : never : never;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.