Skip to content

ExportDeclaration

파일 경로, 심볼 이름, JSDoc 정보를 포함한 export된 선언을 나타내요.

시그니처

typescript
type ExportDeclaration = {
  filePath: StandardizedFilePath;
  symbolName: string;
  declaration: ExportedDeclarations;
  kind: DeclarationKind;
  jsDoc: JSDoc;
  signature: string;
};

속성

  • filePathRequired · StandardizedFilePath

    export된 선언의 표준화된 파일 경로

  • symbolNameRequired · string

    export된 선언의 심볼 이름

  • declarationRequired · ExportedDeclarations

    TypeScript 선언 객체

  • kindRequired · DeclarationKind

    선언의 타입

  • jsDocRequired · JSDoc

    원본 JSDoc 데이터

  • signatureRequired · string

    TypeScript 시그니처 문자열

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