ExportDeclaration
파일 경로, 심볼 이름, JSDoc 정보를 포함한 메타데이터와 함께 외부 공개된 선언을 나타내요.
시그니처
typescript
type ExportDeclaration = {
filePath: StandardizedFilePath;
symbolName: string;
declaration: ExportedDeclarations;
kind: DeclarationKind;
jsDoc: JSDoc;
signature: string;
};
매개변수
- filePathRequired · StandardizedFilePath
외부 공개된 선언의 표준화된 파일 경로
- symbolNameRequired · string
외부 공개된 선언의 심볼 이름
- declarationRequired · ExportedDeclarations
TypeScript 선언 객체
- kindRequired · DeclarationKind
선언의 타입
- jsDocRequired · JSDoc
원시 JSDoc 데이터
- signatureRequired · string
TypeScript 시그니처 문자열