Meepso
Meepso
DDeno
Created by Meepso on 10/19/2024 in #help
Async Unsafe Callback?
const cb = new Deno.UnsafeCallback(
{
parameters: ["pointer"],
result: "i32"
} as const,
async (L: Deno.PointerValue) => {


}

)
const cb = new Deno.UnsafeCallback(
{
parameters: ["pointer"],
result: "i32"
} as const,
async (L: Deno.PointerValue) => {


}

)
Somthing like this!
4 replies