UNPKG

@kwaeri/controller

Version:

The @kwaeri/controller component of the @kwaer/node-kit application platform.

15 lines (14 loc) 487 B
/** * SPDX-PackageName: kwaeri/controller * SPDX-PackageVersion: 0.3.4 * SPDX-FileCopyrightText: © 2014 - 2022 Richard Winters <kirvedx@gmail.com> and contributors * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR MIT */ export interface ApplicationController { index(request: any, response: any): any; } export declare class BaseController implements ApplicationController { render?: Function; constructor(); index(request: any, response: any): void; }