15 lines
545 B
TypeScript
15 lines
545 B
TypeScript
import React from 'react';
|
|
import { RowWithActions, WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'pay', false, {
|
|
transfers?: (RowWithActions<EntityDict, 'withdrawTransfer'> & {
|
|
creatorName: string;
|
|
creatorMobile: string;
|
|
operatorName: string;
|
|
operatorMobile: string;
|
|
channel: string;
|
|
})[];
|
|
}, {
|
|
setUpdateId: (id: string, action: string) => void;
|
|
}>): React.JSX.Element;
|