@finagraph/strongbox-finconnect-react
Version:
React components to integrate with Finagraph Strongbox
21 lines (20 loc) • 612 B
TypeScript
export declare enum AccountingPackage {
BusinessCentral = "BusinessCentral",
Example = "Example",
FreeAgent = "FreeAgent",
FreshBooks = "FreshBooks",
NetSuite = "NetSuite",
MYOBBusiness = "MYOBBusiness",
QuickBooksDesktop = "QuickBooksDesktop",
QuickBooksOnline = "QuickBooksOnline",
SageIntacct = "SageIntacct",
SageOne = "SageOne",
Xero = "Xero",
FileUpload = "FileUpload"
}
export type AccountingPkgPresentation = {
featureName: AccountingPackage;
descriptor: string | undefined;
isPublic: boolean;
linkFunc?: () => void;
};