Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.DynamicLibrary

A dynamic library resource

interface DynamicLibrary <S extends ForeignLibraryInterface> {
symbols: StaticForeignLibraryInterface<S>;
close(): void;
}

§Type Parameters

§Properties

§
symbols: StaticForeignLibraryInterface<S>
[src]

All of the registered library along with functions for calling them

§Methods

§
close(): void
[src]