Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: export transiently referenced types #2717

Merged
merged 2 commits into from
Sep 24, 2024
Merged

Commits on Sep 24, 2024

  1. fix: export transiently referenced types

    When we export a function like:
    
    ```ts
    export function (foo: Bar): Baz {
      return { ... }
    }
    ```
    
    We have to also export the `Bar` type and any types it references,
    otherwise typedoc cannot create the API docs for us.
    
    Also swaps instances of `(default: foo)` to use `@default` jsdoc tags.
    achingbrain committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    e420524 View commit details
    Browse the repository at this point in the history
  2. chore: update comment

    achingbrain committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    82f6596 View commit details
    Browse the repository at this point in the history