12 lines
547 B
TypeScript
12 lines
547 B
TypeScript
import { NativeConfig, WebConfig, WechatMpConfig, WechatPublicConfig } from '../../../entities/Application';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export type AppConfig = WebConfig | WechatMpConfig | WechatPublicConfig | NativeConfig;
|
|
export type CosConfig = AppConfig['cos'];
|
|
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<EntityDict, keyof EntityDict, false, {
|
|
config: AppConfig;
|
|
entity: string;
|
|
entityId: string;
|
|
name: string;
|
|
}>) => React.ReactElement;
|
|
export default _default;
|