8 lines
355 B
TypeScript
8 lines
355 B
TypeScript
import React from 'react';
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
import { RowWithActions, WebComponentProps } from "oak-frontend-base";
|
|
export default function render(props: WebComponentProps<EntityDict, 'wechatPay', false, {
|
|
wechatPay?: (RowWithActions<EntityDict, 'wechatPay'>);
|
|
serverUrl: string;
|
|
}>): React.JSX.Element | null;
|