module A
export const one = ...
export const two = ...
const three = ...
export { three as "name.with_dot" }
module B
Resulting d.ts file
declare namespace X {
export {
one,
two,
three as name.with_dot
}
}
Here we are, we lost the quotation marks.
| Question |
Answer |
@microsoft/api-extractor version? |
7.58.7 |
| Operating system? |
Linux |
| API Extractor scenario? |
rollups (.d.ts) |
| Would you consider contributing a PR? |
No |
| TypeScript compiler version? |
5.9.3 |
Node.js version (node -v)? |
24.14.1 |
module A
module B
Resulting d.ts file
Here we are, we lost the quotation marks.
@microsoft/api-extractorversion?node -v)?