MarkdownSection
Interface representing a section of a markdown document.
Signature
typescript
interface MarkdownSection {
type: MarkdownSectionType;
content: string;
}Properties
- typeRequired · string
Type of the markdown section (title, description, signature, etc.)
- contentRequired · string
Section content in markdown format
