14 lines
504 B
TypeScript
14 lines
504 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, 'refund', false, {
|
|
refunds?: (RowWithActions<EntityDict, 'refund'> & {
|
|
creatorName: string;
|
|
creatorMobile: string;
|
|
isWithdraw: boolean;
|
|
payChannel: string;
|
|
})[];
|
|
amIRoot?: boolean;
|
|
oakExecutable: boolean;
|
|
}>): React.JSX.Element | null;
|