11 lines
377 B
TypeScript
11 lines
377 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, 'wechatMenu', true, {
|
|
is_menu_open: boolean;
|
|
applicationId: string;
|
|
menuId: string;
|
|
isPlatform: boolean;
|
|
tabKey: string;
|
|
}, {}>): React.JSX.Element | null;
|