UNPKG

easy-express-cwa

Version:

CLI tool to setup a common Express.js backend developed by codewithashim

18 lines (14 loc) 295 B
import { IGenericErrorMessage } from './error'; export type IGenericResponse<T> = { meta: { page: number; limit: number; total: number; }; data: T; }; export type IGenericErrorResponse = { statusCode: number; message: string; errorMessages: IGenericErrorMessage[]; };