UNPKG

@nova-ts/core

Version:

A serverside framework used to build scalable application

12 lines (9 loc) 280 B
import { Response } from 'express'; /** * NovaResponse interface extends the Express Response interface. * It can be used to add custom properties or methods to the response object. */ interface NovaResponse extends Response { body?: any; } export type { NovaResponse };