Deno.StaticForeignFunctionParameter
type StaticForeignFunctionParameter<T> = T extends "void" ? void : T extends StaticNativeNumberType ? number : T extends "pointer" ? Deno.UnsafePointer | Deno.TypedArray | null : unknown;
§Type
§
T extends "void" ? void : T extends StaticNativeNumberType ? number : T extends "pointer" ? Deno.UnsafePointer | Deno.TypedArray | null : unknown
[src]