12 lines
317 B
TypeScript
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;
|