12 lines
430 B
TypeScript
12 lines
430 B
TypeScript
import React from "react";
|
|
import { EntityDict } from "../../../../oak-app-domain";
|
|
import { WebComponentProps } from "oak-frontend-base";
|
|
export default function render(props: WebComponentProps<EntityDict, 'wechatMpShip', false, {
|
|
wechatMpShip: EntityDict['wechatMpShip']['Schema'];
|
|
wpProducts: {
|
|
label: string;
|
|
value: string;
|
|
}[];
|
|
wpProductChangable: boolean;
|
|
}>): React.JSX.Element | undefined;
|