bizCustomContactChooseExternal.d.ts 580 B

12345678910111213141516171819
  1. export interface BizCustomContactChooseExternalParams {
  2. title?: string;
  3. users?: string[];
  4. disabledUsers?: string[];
  5. }
  6. export interface BizCustomContactChooseExternalResult {
  7. name: string;
  8. avatar: string;
  9. emplId: string;
  10. }
  11. declare function bizCustomContactChooseExternal(params: BizCustomContactChooseExternalParams): Promise<BizCustomContactChooseExternalResult>;
  12. declare namespace bizCustomContactChooseExternal {
  13. var version: {
  14. android: string;
  15. ios: string;
  16. pc: string;
  17. };
  18. }
  19. export default bizCustomContactChooseExternal;