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