interface CreateProjectAvatar {
    avatar: any;
    projectIdOrKey: string;
    size?: number;
    x?: number;
    y?: number;
}

Properties

avatar: any
projectIdOrKey: string

The ID or (case-sensitive) key of the project.

size?: number

The length of each side of the crop region.

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.