13 lines
470 B
TypeScript
13 lines
470 B
TypeScript
import React from 'react';
|
|
import { WechatPublicConfig } from '../../../../oak-app-domain/Application/Schema';
|
|
import { EntityDict } from '../../../../oak-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
type Config = WechatPublicConfig;
|
|
export default function render(props: WebComponentProps<EntityDict, 'application', false, {
|
|
name: string;
|
|
description: string;
|
|
oakId: string;
|
|
config: Config;
|
|
}, {}>): React.JSX.Element;
|
|
export {};
|