Skip to main content
type alias Deno.StaticForeignFunctionResult
Unstable

Infers a foreign function return type

definition: T extends "void" ? void : T extends StaticNativeNumberType ? number : T extends "pointer" ? UnsafePointer : never