mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-10 09:52:00 +00:00
29 lines
658 B
TypeScript
29 lines
658 B
TypeScript
import {
|
|
IAgingPeriod,
|
|
IAgingSummaryQuery,
|
|
IAgingSummaryTotal,
|
|
IAgingSummaryContact,
|
|
IAgingSummaryData,
|
|
} from './AgingReport';
|
|
|
|
export interface IARAgingSummaryQuery extends IAgingSummaryQuery {
|
|
customersIds: number[];
|
|
}
|
|
|
|
export interface IARAgingSummaryCustomer extends IAgingSummaryContact {
|
|
customerName: string;
|
|
}
|
|
|
|
export interface IARAgingSummaryTotal extends IAgingSummaryTotal {}
|
|
|
|
export interface IARAgingSummaryData extends IAgingSummaryData {
|
|
customers: IARAgingSummaryCustomer[];
|
|
}
|
|
|
|
export type IARAgingSummaryColumns = IAgingPeriod[];
|
|
|
|
export interface IARAgingSummaryMeta {
|
|
organizationName: string;
|
|
baseCurrency: string;
|
|
}
|