21 lines
854 B
TypeScript
21 lines
854 B
TypeScript
import { EntityDict } from "../../../oak-app-domain/EntityDict";
|
|
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<EntityDict, "articleMenu", true, {
|
|
entity: string;
|
|
entityId: string;
|
|
show: "edit" | "doc" | "preview";
|
|
articleMenuId: string;
|
|
articleId: string;
|
|
tocPosition: "none" | "left" | "right";
|
|
highlightBgColor: string;
|
|
onMenuView: () => void;
|
|
onMenuViewById: (articleMenuId: string) => void;
|
|
onArticleView: (articleId: string) => void;
|
|
onArticlePreview: (content?: string, title?: string) => void;
|
|
onArticleEdit: (articleId: string) => void;
|
|
setCopyArticleUrl: (articleId: string) => string;
|
|
origin: import("../../../types/Config").CosOrigin | null;
|
|
scrollId: string;
|
|
activeColor: string | undefined;
|
|
}>) => React.ReactElement;
|
|
export default _default;
|