6 lines
293 B
TypeScript
6 lines
293 B
TypeScript
import { RowWithActions, WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'accountOper', false, {
|
|
accountOpers: RowWithActions<EntityDict, 'accountOper'>[];
|
|
}>): string;
|