reuseAvatar
Sử dụng lại avatar
api.reuseAvatar(photoId)
Parameters
Return
Types
export type ReuseAvatarResponse = null;Examples
const avatarList = await api.getAvatarList();
const photoId = avatarList.photos[1].photoId;
api.reuseAvatar(photoId)
.then(console.log)
.catch(console.error);Last updated