import { type Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { StaticForeignSymbol } = Deno;
A utility type that infers a foreign symbol.
Type Parameters
T extends ForeignFunction | ForeignStatic
definition: T extends ForeignFunction ? FromForeignFunction<T> : T extends ForeignStatic ? FromNativeType<T["type"]> : never