apiv3-response.ts 188 B

123456
  1. import { Response } from 'express';
  2. export interface ApiV3Response extends Response {
  3. apiv3?(obj?: any, status?: number): any
  4. apiv3Err?(_err: any, status?: number, info?: any): any
  5. }