Response
import { Response } from "https://raw.githubusercontent.com/Caesar2011/denotrain/master/mod.ts";
class Response { }
constructor(ctx: Context<any, any>);
private _sent: boolean;
public cookies: {};
[_: string]: {
value: string;
options: CookieOptions;
} | null; public headers: [string, string][];
public mimeType: string;
public response: DenoResponse | undefined;
public status: number;
public async _prepareResponse(): Promise<void>;
public async _respond(): Promise<void>;
async file(filePath: string): Promise<boolean>;
async render(file: string, data?: {}): Promise<void>;
[_: string]: any;