Interface Block

interface Block {
    id: string;
    style?: CSSProperties;
    title?: string;
    type: "block";
}

Hierarchy

  • BlockBase
    • Block

Properties

Properties

id: string
title?: string
type: "block"