Skip to content

Commit eaa9b72

Browse files
committed
wip
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 451be5f commit eaa9b72

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/serialize/index.common.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ Copyright (c) OWASP Foundation. All Rights Reserved.
2121

2222
export * from './bomRefDiscriminator'
2323
export * from './errors'
24-
export type * as Types from './types'
24+
/* eslint-disable-next-line @typescript-eslint/consistent-type-exports -- backwards-compat TS4 */
25+
export * as Types from './types'
2526

2627
// region base
2728

src/validation/index.common.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ Copyright (c) OWASP Foundation. All Rights Reserved.
1818
*/
1919

2020
export * from './errors'
21-
export type * as Types from './types'
21+
/* eslint-disable-next-line @typescript-eslint/consistent-type-exports -- backwards-compat TS4 */
22+
export * as Types from './types'

0 commit comments

Comments
 (0)