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 (8 loc) • 307 B
text/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';
}