@experteam-mx/ngx-services
Version:
Angular common services for Experteam apps
20 lines (19 loc) • 537 B
TypeScript
import { CollectionPayment, ReportExternalShipment, Shipment } from './api-reports.interfaces';
export type CollectionPaymentsOut = {
collection_payments: CollectionPayment[];
total: number;
};
export type ShipmentsReportOut = {
shipments: Shipment[];
total: number;
};
export type ExistPendingPaymentsIn = {
installation_id: number;
};
export type ExistPendingInvoicesIn = {
installation_id: number;
};
export type ExternalShipmentsOut = {
external_shipments: ReportExternalShipment[];
total: number;
};