Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/imagemagick_deno/src/internal/disposable-array.ts>DisposableArray

Deno port of the WASM library for ImageMagick
Latest
class DisposableArray
implements IDisposable
import { DisposableArray } from "https://deno.land/x/imagemagick_deno@0.0.26/src/internal/disposable-array.ts";

Constructors

new
DisposableArray(
pointer: number,
length: number,
func: (data: Uint8Array) => TReturnType | Promise<TReturnType>,
)

Type Parameters

TReturnType

Properties

private
readonly
optional
_bytes: Uint8Array
private
readonly
_func: (data: Uint8Array) => TReturnType | Promise<TReturnType>
private
_pointer: number