16 lines
694 B
TypeScript
16 lines
694 B
TypeScript
/// <reference types="react" />
|
|
import { GenerateUrlFn } from "../../../types/Article";
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<EntityDict, "articleMenu", true, {
|
|
entity: string;
|
|
entityId: string;
|
|
parentId: string | undefined;
|
|
origin: import("../../../types/Config").CosOrigin | null;
|
|
onMenuClick: (menuId: string, menuName: string, isArticle: boolean) => void;
|
|
onArticleClick: (atricleId: string) => void;
|
|
empty: import("react").ReactNode;
|
|
changeAddArticle: (show: boolean) => void;
|
|
generateUrl: GenerateUrlFn;
|
|
}>) => React.ReactElement;
|
|
export default _default;
|