Skip to content

Latest commit

 

History

History
65 lines (36 loc) · 1.66 KB

File metadata and controls

65 lines (36 loc) · 1.66 KB

quickjs-emscriptenquickjs-emscripten-coreReadme | Exports


quickjs-emscripten / quickjs-emscripten-core / Disposable

Interface: Disposable

An object that can be disposed. Lifetime is the canonical implementation of Disposable. Use Scope to manage cleaning up multiple disposables.

Contents

Properties

alive

alive: boolean

Source

packages/quickjs-emscripten-core/src/lifetime.ts:23

Methods

[dispose]()

[dispose](): void

A method that is used to release resources held by an object. Called by the semantics of the using statement.

Returns

void

Source

packages/quickjs-emscripten-core/src/lifetime.ts:28


dispose()

dispose(): void

Dispose of the underlying resources used by this object.

Returns

void

Source

packages/quickjs-emscripten-core/src/lifetime.ts:17


Generated using typedoc-plugin-markdown and TypeDoc