function djwt.verifyimport { djwt } from "https://dotland.deno.dev/x/live@1.63.12/commons/jwt/deps.ts"; const { verify } = djwt; verify<PayloadType extends Payload>(jwt: string,key: CryptoKey | null,options?: VerifyOptions,): Promise<PayloadType>Takes jwt, CryptoKey and VerifyOptions and returns the Payload of the jwt if the jwt is valid. Otherwise it throws an Error. Type ParametersPayloadType extends PayloadParametersjwt: stringkey: CryptoKey | nulloptionaloptions: VerifyOptionsReturnsPromise<PayloadType>