happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
9 lines • 374 B
TypeScript
export default interface IImageBitmapOptions {
imageOrientation?: 'from-image' | 'flipY' | 'none';
premultiplyAlpha?: 'none' | 'premultiply' | 'default';
colorSpaceConversion?: 'default' | 'none';
resizeWidth?: number;
resizeHeight?: number;
resizeQuality?: 'pixelated' | 'low' | 'medium' | 'high';
}
//# sourceMappingURL=IImageBitmapOptions.d.ts.map