13 lines
409 B
TypeScript
13 lines
409 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
export default function Render(props: WebComponentProps<EntityDict, 'articleMenu', true, {
|
|
entity: string;
|
|
entityId: string;
|
|
show: string;
|
|
articleMenuId: string;
|
|
width: string;
|
|
}, {
|
|
gotoDoc: () => void;
|
|
gotoArticleDetail: (oakId: string) => void;
|
|
}>): JSX.Element | null;
|