Skip to content

Commit 94a83b4

Browse files
committed
feat: export ConvertOptions interface for better type usage
1 parent 074836d commit 94a83b4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/convert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import path from 'path';
77
/**
88
* Options for the conversion
99
*/
10-
interface ConvertOptions {
10+
export interface ConvertOptions {
1111
outputPath?: string;
1212
toolName?: string;
1313
envProps?: string[];

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
export { convertJUnitToCTRFReport } from './convert';
2+
export type { ConvertOptions } from './convert';

0 commit comments

Comments
 (0)