@slack/web-api / RichTextList
Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:793
A list block within a rich text field.
optional border: 0 | 1;Defined in: node_modules/@slack/types/dist/block-kit/extensions.d.ts:66
Whether to render a quote-block-like border on the inline side of the list. 0 renders no border
while 1 renders a border.
elements: RichTextSection[];Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:801
An array of RichTextSection elements comprising each list item.
optional indent: number;Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:811
The style of the list points. Can be a number from 0 (default) to 8. Yields a different character
or characters rendered as the list points. Also affected by the style property.
style: "bullet" | "ordered";Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:806
The type of list. Can be either bullet (the list points are all rendered the same way) or ordered
(the list points increase numerically from 1).
type: "rich_text_list";Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:797
The type of element. In this case type is always rich_text_list.