10 lines
448 B
TypeScript
10 lines
448 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, 'account', false, {
|
|
account: RowWithActions<EntityDict, 'account'>;
|
|
depositMax: number;
|
|
}, {
|
|
deposit: (price: number, channel: string, meta: any, success: () => void) => Promise<void>;
|
|
}>): React.JSX.Element | null;
|