8 lines
327 B
TypeScript
8 lines
327 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'wechatMenu', true, {
|
|
is_menu_open: boolean;
|
|
applicationId: string;
|
|
menuId: string;
|
|
}, {}>): import("react/jsx-runtime").JSX.Element | null;
|