19 lines
782 B
TypeScript
19 lines
782 B
TypeScript
import { WebConfig, WechatPublicConfig, WechatMpConfig } from '../../../oak-app-domain/Application/Schema';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
declare type Config = WebConfig | WechatPublicConfig | WechatMpConfig;
|
|
export default function Render(props: WebComponentProps<EntityDict, 'application', false, {
|
|
name: string;
|
|
description: string;
|
|
oakId: string;
|
|
config: Config;
|
|
tabValue: 'detail';
|
|
type: EntityDict['application']['Schema']['type'];
|
|
style: EntityDict['application']['Schema']['style'];
|
|
system: EntityDict['system']['Schema'];
|
|
}, {
|
|
onTabClick: (key: string) => void;
|
|
goWechatPublicTagList: () => void;
|
|
}>): import("react/jsx-runtime").JSX.Element;
|
|
export {};
|