interface BlockOptions {
    content: string;
    type:
        | "NOTE"
        | "WARNING"
        | "INFO"
        | "TIP";
}

Properties

Properties

content: string
type:
    | "NOTE"
    | "WARNING"
    | "INFO"
    | "TIP"