UNPKG

@accounter/server

Version:
10 lines (9 loc) 707 B
import { TenantAwareDBClient } from '../../app-providers/tenant-db-client.js'; import type { ICalculateCreditcardDebitDateParams, IFlagForeignFeeTransactionsParams, IGetReferenceMergeCandidatesParams } from '../types.js'; export declare class CornJobsProvider { private db; constructor(db: TenantAwareDBClient); getReferenceMergeCandidates(params: IGetReferenceMergeCandidatesParams): Promise<import("../types.js").IGetReferenceMergeCandidatesResult[]>; flagForeignFeeTransactions(params: IFlagForeignFeeTransactionsParams): Promise<import("../types.js").IFlagForeignFeeTransactionsResult[]>; calculateCreditcardDebitDate(params: ICalculateCreditcardDebitDateParams): Promise<void[]>; }