12345678910111213141516171819 |
- export interface BizCustomContactChooseExternalParams {
- title?: string;
- users?: string[];
- disabledUsers?: string[];
- }
- export interface BizCustomContactChooseExternalResult {
- name: string;
- avatar: string;
- emplId: string;
- }
- declare function bizCustomContactChooseExternal(params: BizCustomContactChooseExternalParams): Promise<BizCustomContactChooseExternalResult>;
- declare namespace bizCustomContactChooseExternal {
- var version: {
- android: string;
- ios: string;
- pc: string;
- };
- }
- export default bizCustomContactChooseExternal;
|