9 lines
412 B
TypeScript
9 lines
412 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, 'wpAccount', false, {
|
|
wpAccount?: (RowWithActions<EntityDict, 'wpAccount'> & {});
|
|
wechatPay?: EntityDict['wechatPay']['OpSchema'];
|
|
systemId: string;
|
|
}>): React.JSX.Element | null;
|