@accounter/server
Version:
Accounter GraphQL server
8 lines (7 loc) • 402 B
TypeScript
import { TenantAwareDBClient } from '../../app-providers/tenant-db-client.js';
import { IGetNormalizedRevenueRecordsParams } from '../types.js';
export declare class AnnualRevenueReportProvider {
private db;
constructor(db: TenantAwareDBClient);
getNormalizedRevenueRecords(params: IGetNormalizedRevenueRecordsParams): Promise<import("../types.js").IGetNormalizedRevenueRecordsResult[]>;
}