Interface AskLayout

Content blocks that are part of an ask.

interface AskLayout {
    attribution?: BlogAttribution;
    blocks: number[];
    type: "ask";
}

Properties

attribution?: BlogAttribution

If the ask is not anonymous, this will include information about the blog that submitted the ask.

blocks: number[]

An array of block indices that are a part of the ask content of the Post.

type