人民医院前端

batchInstallToGroup.d.ts 397B

1234567891011121314
  1. import '../../entry/union';
  2. interface BatchInstallCoolAppArgs {
  3. /** 酷应用 code */
  4. coolAppCode: string;
  5. /** 酷应用在开放平台的身份标识 */
  6. clientId: string;
  7. /** 组织id */
  8. corpId: string;
  9. /** 是否安装到单聊会话 */
  10. isSingleChat: boolean;
  11. }
  12. export declare function batchInstallCoolApp(args: BatchInstallCoolAppArgs): Promise<any>;
  13. export {};