15 lines
519 B
TypeScript
15 lines
519 B
TypeScript
import React from 'react';
|
|
import { RowWithActions, WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
type ColoredOffline = EntityDict['offlineAccount']['OpSchema'] & {
|
|
color: string;
|
|
};
|
|
export default function Render(props: WebComponentProps<EntityDict, 'pay', false, {
|
|
pays: (RowWithActions<EntityDict, 'pay'> & {
|
|
creatorName: string;
|
|
creatorMobile?: string;
|
|
})[];
|
|
offlines: ColoredOffline[];
|
|
}>): React.JSX.Element | null;
|
|
export {};
|