TypedefData
JSDoc의 @typedef 태그 파싱 결과를 나타내요. 커스텀 타입이나 복잡한 객체 구조를 정의하는 데 사용돼요.
시그니처
typescript
interface TypedefData {
name: string;
type: string;
description: string;
properties: PropertyData[];
}속성
- nameRequired · string
타입의 이름
- typeRequired · string
타입의 기본 타입 (예: Object, Array 등)
- descriptionRequired · string
타입의 설명
- propertiesRequired · PropertyData[]
타입이 객체일 때의 속성 정보 배열
