Appearance
BlockHint
Interface defining the structure of tooltip content displayed when hovering over block items in the Stripo Email Editor.
typescript
interface BlockHint {
title: string;
description: string;
}
Description
The BlockHint
interface represents the tooltip or hint information displayed when users hover over block items in the blocks panel. It provides contextual information to help users understand what a block does before dragging it into their email template.
Import
typescript
import { BlockHint } from '@stripoinc/ui-editor-extensions';
Properties
title
The main heading text displayed in the hint tooltip.
typescript
title: string
Type
string
description
Detailed explanation of the block's functionality and usage.
typescript
description: string
Type
string