image-js
Version:
Image processing and manipulation in JavaScript
14 lines • 439 B
TypeScript
export declare const ImageColorModel: {
readonly GREY: "GREY";
readonly GREYA: "GREYA";
readonly RGB: "RGB";
readonly RGBA: "RGBA";
readonly BINARY: "BINARY";
};
export type ImageColorModel = (typeof ImageColorModel)[keyof typeof ImageColorModel];
export declare const colorModels: Record<ImageColorModel, {
components: number;
alpha: boolean;
channels: number;
}>;
//# sourceMappingURL=colorModels.d.ts.map