TypedefData
JSDoc에서 @typedef 태그를 파싱한 결과를 나타내요. 사용자 정의 타입이나 복잡한 객체 구조를 정의할 때 사용돼요.
시그니처
typescript
interface TypedefData { name: string; type: string; description: string; properties: PropertyData[] }
매개변수
- nameRequired · string
타입의 이름
- typeRequired · string
타입의 기본 타입 (예: Object, Array 등)
- descriptionRequired · string
타입의 설명
- propertiesRequired · PropertyData[]
타입이 객체인 경우의 속성 정보 배열