UNPKG

eust-conciliation

Version:
8 lines (5 loc) 237 B
/* eslint-disable no-unused-vars */ import { DebitNotice } from '../../domain/debit-notice'; export interface IDebitNoticeClient { getDebitNotice(year: number, month: number, page: number, perPage: number): Promise<DebitNotice[]>; }