interface Deno.DynamicLibrary
A dynamic library resource. Use Deno.dlopen
to load a dynamic
library and return this interface.
S extends ForeignLibraryInterface
All of the registered library along with functions for calling them.
close(): void
Removes the pointers associated with the library symbols.
Continuing to use symbols that are part of the library will lead to errors and crashes.
Calling this method will also immediately set any references to zero and will no longer keep Deno's process from exiting.