10 lines
391 B
TypeScript
10 lines
391 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, {
|
|
orders?: (RowWithActions<EntityDict, 'order'> & {
|
|
creatorName: string;
|
|
creatorMobile: string;
|
|
})[];
|
|
}>): React.JSX.Element | null;
|