9 lines
368 B
TypeScript
9 lines
368 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
import { AccountPayConfig, PayConfig } from '../../../types/PayConfig';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'account', false, {
|
|
depositMax: number;
|
|
payConfig: PayConfig;
|
|
accountConfig?: AccountPayConfig;
|
|
}>): null;
|