UNPKG

yz-native-js-sdk

Version:

provide the native function call API of yunzai mobile platform for the third party

16 lines (15 loc) 391 B
export interface ContactUserInfo { [key: string]: any; } export interface ContactUserInfoParam { [key: string]: any; } export interface YzConcatUserInfoParam extends ContactUserInfoParam { /** * 用户ID */ targetUserId: string; success?: (userInfo: ContactUserInfo) => void; fail?: (error: any) => void; complete?: (msg: any) => void; }