image-js
Version:
Image processing and manipulation in JavaScript
8 lines • 302 B
TypeScript
import { Image } from '../Image.js';
/**
* Create an array of single-channel images based on a multi-channel image.
* @param image - The image with many channels.
* @returns Array of single-channel images.
*/
export declare function split(image: Image): Image[];
//# sourceMappingURL=split.d.ts.map