8 lines
326 B
TypeScript
8 lines
326 B
TypeScript
/// <reference types="react" />
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
import { WebComponentProps } from "oak-frontend-base";
|
|
export default function render(props: WebComponentProps<EntityDict, 'wechatMpShip', false, {
|
|
appName?: string;
|
|
disabled?: boolean;
|
|
}>): import("react").JSX.Element | undefined;
|