Appearance
Topol Block
TopolBlock is the base interface every block extends, carrying the two fields common to all of them: the MJML tagName and a unique uid.
ts
interface TopolBlock {
tagName: string;
uid: string;
}