UNPKG

@finagraph/strongbox-finconnect-react

Version:

React components to integrate with Finagraph Strongbox

11 lines (10 loc) 449 B
import * as React from 'react'; import '../styles.scss'; import { AccountingPkgPresentation } from '../Models/AccountingPackages'; export type IAccountingPackageProps = { buttonsDisabled: boolean; accountingPackages: AccountingPkgPresentation[]; style?: React.CSSProperties; onPackageInvoke(accountingPackage: AccountingPkgPresentation): void; }; export declare const AccountingPackages: React.FC<IAccountingPackageProps>;