Is your feature request related to a problem? Please describe.
The reporter does not export its TypeScript type for the reporter configuration. This leads to potential typos not being detected and prevents IntelliSense from providing useful suggestions.
Describe the solution you'd like
I would like the reporter to export its options. For example, in index.ts:
export default XrayReporter;
+ export type { XrayOptions };
This would then enhance the configuration when used with as XrayOptions or satisfies XrayOptions:
Is your feature request related to a problem? Please describe. The reporter does not export its TypeScript type for the reporter configuration. This leads to potential typos not being detected and prevents IntelliSense from providing useful suggestions.
Describe the solution you'd like I would like the reporter to export its options. For example, in
index.ts
:This would then enhance the configuration when used with
as XrayOptions
orsatisfies XrayOptions
:Describe alternatives you've considered
Thank you for considering this improvement!