UNPKG

ng-hub-ui-avatar

Version:

A powerful, flexible, and standalone Angular avatar component that generates and fetches user avatars from multiple sources including social media, Gravatar, or custom images with intelligent fallback system

13 lines (12 loc) 349 B
import { Source } from './source'; import { AvatarSource } from './avatar-source.enum'; /** * Skype source implementation. * Fetch avatar source based on skype identifier */ export declare class Skype implements Source { sourceId: string; readonly sourceType: AvatarSource; constructor(sourceId: string); getAvatar(): string; }