UNPKG

bling-erp-api-with-rate-limit

Version:
12 lines (11 loc) 647 B
import { Entity } from '../@shared/entity'; import { ICreateBody, ICreateResponse } from './interfaces/create.interface'; import { IDeleteParams } from './interfaces/delete.interface'; import { IFindParams, IFindResponse } from './interfaces/find.interface'; import { IUpdateBody, IUpdateParams, IUpdateResponse } from './interfaces/update.interface'; export declare class LogisticasObjetos extends Entity { delete(params: IDeleteParams): Promise<null>; find(params: IFindParams): Promise<IFindResponse>; create(body: ICreateBody): Promise<ICreateResponse>; update(params: IUpdateParams & IUpdateBody): Promise<IUpdateResponse>; }