import { PaginateQuery } from '../query/paginate.query'; export interface RequestMakerInterface { create(path: string, requestBody: any): Promise; read(path: string, paginationQuery?: PaginateQuery): Promise; update(path: string, requestBody: any): Promise; delete(path: string): Promise; }