mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
12 lines
470 B
TypeScript
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
|