Files
kiss-firefox/template/externs/webextension_polyfill/clipboard/Static.hx
2025-02-02 18:08:09 -06:00

9 lines
348 B
Haxe

package webextension_polyfill.clipboard;
typedef Static = {
/**
Copy an image to the clipboard. The image is re-encoded before it is written to the clipboard. If the image is invalid,
the clipboard is not modified.
**/
function setImageData(imageData:js.lib.ArrayBuffer, imageType:SetImageDataImageTypeEnum):js.lib.Promise<ts.Undefined>;
};