Avataaars API Documentation - v3.1.0
    Preparing search index...

    Interface HoverExpression

    Expression configuration for hover animations. Defines a set of expressions (mouthType, eyeType, eyebrowType) to display during hover. Uses the same prop names as AvatarProps for consistency.

    const hoverSequence: HoverExpression[] = [
    { mouthType: "Smile", eyeType: "Happy", eyebrowType: "Default" },
    { mouthType: "Surprised", eyeType: "Wide", eyebrowType: "Raised" }
    ];
    interface HoverExpression {
        mouthType: string;
        eyeType: string;
        eyebrowType: string;
    }
    Index

    Properties

    mouthType: string
    eyeType: string
    eyebrowType: string