import ApiModule from './api-module'; import { AvatarId } from '../types/common'; import { AvatarInfo } from '../types/avatar'; import { UserInfoResponse } from '../types/user'; export default class Avatar extends ApiModule { getById(avatarId: AvatarId): Promise; choose(avatarId: AvatarId): Promise; }