UNPKG

inversify-postman-collection

Version:
26 lines (25 loc) 578 B
export interface IRouteDefData { [n: string]: Record<string, { request: any; response: any; describe?: string; }>; } export interface IInversifyRouteDefInput { controller: string; endpoints: { route: string; args?: string[]; }[]; } export interface IInversifyOutputCustom { group: string; endpoints: { title: string; method: string; url: string; queryParams?: string[]; requestBody?: any; response?: any | Record<string, any> | Record<string, any>[]; }[]; }