The generated docs have trouble picking up the parameter names when destructuring function parameters. This function declaration:
export function isLeapYear({ year }: SloppyDate): boolean { ... }
...looks like this in docs:
isLeapYear(unnamed 0: SloppyDate): boolean
Searching for }: in the codebase reveals the problematic functions, in 16 files at the time of writing.
The generated docs have trouble picking up the parameter names when destructuring function parameters. This function declaration:
...looks like this in docs:
Searching for
}:in the codebase reveals the problematic functions, in 16 files at the time of writing.