oak-general-business/lib/pages/application/detail/web.d.ts

19 lines
754 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;
}>): JSX.Element;
export {};