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

6 lines (5 loc) 173 B
import { Source } from './source'; /** * A creator interface used to instantiate source implementation */ export type SourceCreator = new (sourceValue: string) => Source;