UNPKG

@create-figma-plugin/utilities

Version:

An extensive library of utility functions for common Figma/FigJam plugin/widget operations

5 lines 287 B
import { createImageElementFromBlobAsync } from './create-image-element-from-blob-async.js'; export async function createImageElementFromBytesAsync(bytes) { return createImageElementFromBlobAsync(new Blob([bytes])); } //# sourceMappingURL=create-image-element-from-bytes-async.js.map