payhere-embed-sdk
Version:
payhere.co embed widget
11 lines (10 loc) • 322 B
TypeScript
import React from "react";
import { LaunchProps } from "./types";
interface PayHereReactProps extends LaunchProps {
open: boolean;
selector: string;
disableCustomer?: "yes" | "no";
hideAmount?: "yes" | "no";
}
declare const PayhereEmbed: React.FC<PayHereReactProps>;
export default PayhereEmbed;