16 lines
645 B
TypeScript
16 lines
645 B
TypeScript
import { WebComponentProps } from "oak-frontend-base";
|
|
import { EntityDict } from "../../../general-app-domain";
|
|
export default function Render(props: WebComponentProps<EntityDict, 'articleMenu', true, {
|
|
rows: EntityDict['article']['OpSchema'][];
|
|
onChildEditArticleChange: (data: string) => void;
|
|
show: string;
|
|
getBreadcrumbItemsByParent: (breadcrumbItems: string[]) => void;
|
|
breadcrumbItems: string[];
|
|
drawerOpen: boolean;
|
|
changeDrawerOpen: (open: boolean) => void;
|
|
selectedArticleId: string;
|
|
openArray: string[];
|
|
}, {
|
|
createOne: () => Promise<void>;
|
|
}>): import("react/jsx-runtime").JSX.Element | null;
|