Context
import { Context } from "https://raw.githubusercontent.com/Caesar2011/denotrain/master/mod.ts";
class Context<S extends object = {}, R extends object = {}> { }
[key: string]: any;
[key: string]: any;
private ticket: string | null;
public data: R;
public error: any;
private async generateTicket(): Promise<string>;
private async getTicket(): Promise<string>;
private async validateTicket(str: string): Promise<boolean>;
async _init();
async _prepareResponse();
async _respond();
async endSession();