method EncryptJWT.prototype.encryptimport { EncryptJWT } from "https://dotland.deno.dev/x/jose@v5.9.2/index.ts"; encrypt(key: KeyLike | Uint8Array, options?: EncryptOptions): Promise<string>Encrypts and returns the JWT. Parameterskey: KeyLike | Uint8ArrayPublic Key or Secret to encrypt the JWT with. See Algorithm Key Requirements. optionaloptions: EncryptOptionsJWE Encryption options. ReturnsPromise<string>