interface StoreAvatar {
    avatar: any;
    entityId: string;
    size: number;
    type: string;
    x?: number;
    y?: number;
}

Properties

avatar: any
entityId: string

The ID of the item the avatar is associated with.

size: number

The length of each side of the crop region.

type: string

The avatar type.

x?: number

The X coordinate of the top-left corner of the crop region.

y?: number

The Y coordinate of the top-left corner of the crop region.