18 lines
492 B
TypeScript
18 lines
492 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, {
|
|
id: string;
|
|
config: any;
|
|
file: File;
|
|
errorIndex: number[];
|
|
oakId: string;
|
|
menuType: string;
|
|
applicationId: string;
|
|
actions: string[];
|
|
iState: string;
|
|
tabKey: string;
|
|
}, {
|
|
create: () => void;
|
|
}>): React.JSX.Element | null;
|