oak-general-business/es/components/articleMenu/list/web.pc.d.ts

18 lines
683 B
TypeScript

import React from 'react';
import { WebComponentProps } from "oak-frontend-base";
import { EntityDict } from "../../../oak-app-domain";
export default function Render(props: WebComponentProps<EntityDict, 'articleMenu', true, {
articleMenus: (EntityDict['articleMenu']['Schema'] & {
latestAtStr: string;
})[];
entity: string;
entityId: string;
origin: null | EntityDict['extraFile']['Schema']['origin'];
onMenuClick: (menuId: string, menuName: string, isArticle: boolean) => void;
empty: React.ReactNode | undefined;
execuable: boolean;
}, {
goDetail: (menuId: string) => void;
onCopy: (menuId: string) => void;
}>): React.JSX.Element;