Skip to main content

UnsafeFnPointer

class Deno.UnsafeFnPointer

An unsafe pointer to a function, for calling functions that are not present as symbols.

Constructors Jump to heading

new
Jump to headingUnsafeFnPointer(
pointer: PointerObject<NoInfer<Omit<Fn, "nonblocking">>>,
definition: Fn,
)

Type Parameters Jump to heading

Properties Jump to heading

Call the foreign function.

The definition of the function.

The pointer to the function.

Back to top