8 lines
351 B
TypeScript
8 lines
351 B
TypeScript
import { WechatMpConfig } from '../../../../oak-app-domain/Application/Schema';
|
|
export default function WechatMp(props: {
|
|
config: WechatMpConfig;
|
|
setValue: (path: string, value: any) => void;
|
|
removeItem: (path: string, index: number) => void;
|
|
cleanKey: (path: string, key: string) => void;
|
|
}): import("react/jsx-runtime").JSX.Element;
|