Express response.

interface IResponse {
    renderLayout: ((data: IRenderLayoutData) => void);
    setCookie: ((name: string, value: any, options?: CookieOptions) => void);
}

Hierarchy

  • Response
    • IResponse

Properties

renderLayout: ((data: IRenderLayoutData) => void)
setCookie: ((name: string, value: any, options?: CookieOptions) => void)