coverUrl$

View as MarkdownOpen in Claude
1get coverUrl$(): Observable<string | undefined>

Observable of the cover image URL.

coverUrl

1get coverUrl(): string | undefined

Cover image URL.

Examples

1address.coverUrl$.subscribe((coverUrl) => {
2 console.log('coverUrl:', coverUrl);
3});