Files
v10/dist/dev/core/combine.d.ts
T

12 lines
470 B
TypeScript

import { Slice, UnionSliceState } from "./slice.js";
//#region src/core/combine.d.ts
/**
* Combines multiple slices into a single slice.
*
* @param slices - The slices to combine.
* @returns A new slice that represents the combination of the input slices.
*/
declare function combine<Target, const Slices extends Slice<Target, any>[]>(...slices: Slices): Slice<Target, UnionSliceState<Slices>>;
//#endregion
export { combine };
//# sourceMappingURL=combine.d.ts.map