tvmjs
    Preparing search index...

    Interface Disposable

    Disposable classes that contains resources (WasmMemory, GPU buffer) which needs to be explicitly disposed.

    interface Disposable {
        dispose: () => void;
    }

    Implemented by

    Index

    Properties

    Properties

    dispose: () => void

    Dispose the internal resource This function can be called multiple times, only the first call will take effect.