react-native-plaid-link-sdk
Version:
React Native Plaid Link SDK (New Architecture & Expo)
12 lines • 549 B
TypeScript
import * as React from "react";
import { ViewProps } from "react-native";
import { LinkExit, LinkEvent, LinkSuccess } from "./ReactNativePlaidLinkSdk.types";
export type PlaidEmbeddedSearchViewProps = {
token: string;
onSuccess?: (success: LinkSuccess) => void;
onExit?: (exit: LinkExit) => void;
onEvent?: (event: LinkEvent) => void;
onLoad?: () => void;
} & ViewProps;
export declare function PlaidEmbeddedSearchView(props: PlaidEmbeddedSearchViewProps): React.JSX.Element;
//# sourceMappingURL=PlaidEmbeddedSearchView.d.ts.map