Files
brazil-swift-ops/packages/treasury/src/transfers.d.ts
defiQUG aedf572b99 Fix TypeScript build errors
- Remove duplicate EscalationLevel export from regulatory.ts
- Add missing logger.ts and reports.ts files to audit package
- Fix treasury package type issues
- Clean dist folders and rebuild
2026-01-23 14:53:05 -08:00

12 lines
588 B
TypeScript

import type { SubledgerTransfer } from '@brazil-swift-ops/types';
declare class TransferStore {
private transfers;
add(transfer: SubledgerTransfer): void;
get(id: string): SubledgerTransfer | undefined;
getByAccount(accountId: string): SubledgerTransfer[];
getAll(): SubledgerTransfer[];
}
export declare function getTransferStore(): TransferStore;
export declare function executeSubledgerTransfer(fromAccountId: string, toAccountId: string, amount: number, currency: string, description?: string): SubledgerTransfer;
export {};
//# sourceMappingURL=transfers.d.ts.map