Interface for Apple Touch Icon operation result. Extends the base ImageOperationResult with Apple-specific properties.

AppleIconResult

interface AppleIconResult {
    error?: Error;
    isDefault?: boolean;
    path: string;
    size?: string | number;
    success: boolean;
}

Hierarchy (View Summary)

Properties

error?: Error

Error object if the operation failed

isDefault?: boolean

Indicates if this is the default Apple Touch Icon (the one referenced without a size in HTML)

path: string

The file path where the image was saved

size?: string | number

The size of the generated image (can be a single number for square images or a string like "310x150" for non-square)

success: boolean

Whether the operation was successful