@finagraph/strongbox-finconnect-react
Version:
React components to integrate with Finagraph Strongbox
15 lines (14 loc) • 407 B
TypeScript
export declare enum LinkState {
LinkingNotInitiated = 0,
LinkingInProgress = 1,
LinkingComplete = 2,
LinkingFailed = 3,
LinkingFailedRequiresAuth = 4
}
export declare class LinkerSession {
linkState: LinkState;
progress: number;
jobId: string | undefined;
constructor(linkState: LinkState, progress: number, jobId?: string);
get isLinking(): boolean;
}