Combination
Generic types: | T U TOut |
Type describing all the combinations possible between two types.
Presentation
type Combination = {
[K1 in T]: {
[K2 in U]: TOut;
};
};
Generic types: | T U TOut |
Type describing all the combinations possible between two types.
type Combination = {
[K1 in T]: {
[K2 in U]: TOut;
};
};