Skip to content

Commit 38e77a4

Browse files
authored
chore: use export type * since its support in TypeScript 5 (#603)
1 parent 53a4e3b commit 38e77a4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export { InstanceV1UtilsAPI as API } from './api.utils'
22
export * from './content.gen'
3-
export * from './types.gen'
4-
export * from './types.utils'
3+
export type * from './types.gen'
4+
export type * from './types.utils'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export { K8SUtilsAPI as API } from './api.utils'
22
export * from './content.gen'
3-
export * from './types.gen'
4-
export * from './types.utils'
3+
export type * from './types.gen'
4+
export type * from './types.utils'
55
export * as ValidationRules from './validation-rules.gen'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export { LbV1UtilsAPI as API, LbZonedV1UtilsAPI as ZonedAPI } from './api.utils'
22
export * from './content.gen'
3-
export * from './types.gen'
4-
export * from './types.utils'
3+
export type * from './types.gen'
4+
export type * from './types.utils'

0 commit comments

Comments
 (0)