/// import type { PublicLitElement as LitElement } from "@arcgis/lumina"; export abstract class SolutionUserAvatar extends LitElement { /** The first and last name of the owner */ accessor fullname: string | null | undefined; /** * Flag to determine if owner information needs to be queried * * @default false */ accessor lookupProfile: boolean; /** The url to the thumbnail image */ accessor thumbnailUrl: string | null | undefined; /** * The owner user name to display * * @default '' */ accessor username: string; }