interface Deno.DynamicLibrary
A dynamic library resource. Use Deno.dlopen
to load a dynamic
library and return this interface.
Type Parameters Jump to heading
Jump to headingS extends ForeignLibraryInterface
Properties Jump to heading
All of the registered library along with functions for calling them.
Methods Jump to heading
Jump to headingclose(): 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.