dino-express
Version:
DinO enabled REST framework based on express
7 lines (6 loc) • 302 B
TypeScript
import { type Response } from '../../Response';
import { type GenericObject } from '../../Types';
import { type ResponseAdaptorInterface } from '../ResponseAdaptorInterface';
export declare class NoopResponseAdaptor implements ResponseAdaptorInterface {
adapt(response: Response): GenericObject;
}