Skip to content

MarkdownSection

마크다운 문서의 섹션을 나타내는 인터페이스예요.

시그니처

typescript
interface MarkdownSection {
  type: MarkdownSectionType;
  content: string;
}

속성

  • typeRequired · string

    마크다운 섹션의 타입 (title, description, signature 등)

  • contentRequired · string

    마크다운 형식의 섹션 내용

MIT 라이선스에 따라 배포됩니다.