UNPKG
ngx-avatar-letters
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Angular component to generate avatar initials with configurable styles.
ngx-avatar-letters
/
lib
/
ngx-avatar-letters.interface.d.ts
11 lines
(10 loc)
•
299 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
declare
const
AVATAR_SHAPES
:
readonly
[
"circle"
,
"square"
,
"rounded"
];
export
type
AvatarShape
=
typeof
AVATAR_SHAPES
[
number
];
export
interface
AvatarConfig
{
name
:
string
;
size
?:
number
;
bgColor
?:
string
;
textColor
?:
string
;
shape
?:
AvatarShape
;
imageUrl
?:
string
; }