18 lines
640 B
TypeScript
18 lines
640 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: 'qiniu';
|
|
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;
|