oak-pay-business/es/components/pay/channelPicker2/web.d.ts

12 lines
317 B
TypeScript

/// <reference types="react" />
import { PayChannelOption } from "../../../types/Pay";
export default function Render(props: {
data: {
channel?: string;
channels: PayChannelOption[];
};
methods: {
onPickChannel: (id: string) => void;
};
}): import("react").JSX.Element | null;