interface Deno.ForeignFunction
Unstable
The interface for a foreign function as defined by its parameter and result types.
Parameters extends readonly NativeType[] = readonly NativeType[]
Result extends NativeResultType = NativeResultType
optional
nonblocking: NonBlocking
When true, function calls will run on a dedicated blocking thread and
will return a Promise resolving to the result.
optional
optional: boolean = false
When true, dlopen will not fail if the symbol is not found.
Instead, the symbol will be set to null.