Deno.DynamicLibrary
UNSTABLE: New API, yet to be vetted.
A dynamic library resource. Use Deno.dlopen
to load a dynamic
library and return this interface.
interface DynamicLibrary <S extends ForeignLibraryInterface> {
symbols: StaticForeignLibraryInterface<S>;
close(): void;
}§Type Parameters
§
S extends ForeignLibraryInterface
[src]§Properties
§
symbols: StaticForeignLibraryInterface<S>
[src]All of the registered library along with functions for calling them.