Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Crypto.VerifyArgs

type VerifyArgs = {
message: Uint8Array;
publicKey: Uint8Array;
signature: Uint8Array;
}
;

§Type

§
{
message: Uint8Array;
publicKey: Uint8Array;
signature: Uint8Array;
}
[src]