1234567891011121314151617181920212223242526272829303132333435 |
- declare namespace GROUP_CHAT_CREATE {
- interface corpUsersProps {
- corpUserId: string,
- name: string,
- corpName: string,
- corpId: string,
- }
- interface SettingsProps {
- corpUsers?: corpUsersProps[]; // 企微号列表
- bizType?: string; // 业务类型
- platform?: string; // 书城
- channel?: string; // 渠道
- templateProductId?: string; // 适用产品
- strategyDTO?: { [x: string]: any };
- groupUsersDTO?: { [x: string]: any };
- }
- interface DispatchGroupChatCreate {
- settings: SettingsProps
- setSettings: React.Dispatch<React.SetStateAction<SettingsProps>>
- onPreviewReset: () => void
- }
- interface FoundationProps<T> extends TASK_CREATE.DefaultProps, TASK_CREATE.DefaultChangeProps<T> {
- value?: { [x: string]: any };
- }
- interface AddGroupObjectProps {
- value?: { [x: string]: any };
- onChange?: (value: any) => void;
- }
- interface AddGroupObjectModalProps {
- value?: { [x: string]: any };
- onChange?: (value: any) => void;
- visible?: boolean;
- onClose?: () => void;
- }
- }
|