import { type UpdateAuthorizationState } from "https://deno.land/x/mtkruto@0.1.157/3_types.ts";
A client's authorization state was changed.
client.on("authorizationState", (ctx) => {
if (ctx.authorizationState.authorized) {
const me = await ctx.client.getMe();
console.log("The client is now authorized as", me.firstName);
} else {
console.log("The client is no longer authorized.")
}
});
Properties
authorizationState: AuthorizationState
The client's new authorization state.