mergeProps
Overload 1
Section titled “Overload 1”import { mergeProps } from "@alloy-js/core";
function mergeProps<T, U>(source: T, source1: U): T & U;
Parameters
Section titled “Parameters”source |
|
source1 |
|
Returns
Section titled “Returns”T & U
Overload 2
Section titled “Overload 2”import { mergeProps } from "@alloy-js/core";
function mergeProps<T, U, V>(source: T, source1: U, source2: V): T & U & V;
Parameters
Section titled “Parameters”source |
|
source1 |
|
source2 |
|
Returns
Section titled “Returns”T & U & V
Overload 3
Section titled “Overload 3”import { mergeProps } from "@alloy-js/core";
function mergeProps<T, U, V, W>(source: T, source1: U, source2: V, source3: W): T & U & V & W;
Parameters
Section titled “Parameters”source |
|
source1 |
|
source2 |
|
source3 |
|
Returns
Section titled “Returns”T & U & V & W