UNPKG

dinoloop-es8

Version:

A lightweight REST API Library for building scalable Node.js server-side applications powered by Typescript

11 lines (10 loc) 254 B
export declare abstract class DinoResponse { /** * Proceeds to next middleware in the chain */ proceed?(result: any): void; /** * Proceeds to next error middleware in the chain */ throw?(err: Error): void; }