Skip to content

Commit 504bec6

Browse files
committed
fix: remove useless omit type on HarmonyConfig
1 parent afa1737 commit 504bec6

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/types/harmony.d.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,8 @@ type DeepPartial<T> =
2424
: T
2525

2626
export interface HarmonyConfig
27-
extends DeepPartial<Omit<HarmonyOptions, 'routeRules' | 'rollupConfig'>>,
28-
C12InputConfig<HarmonyConfig> {
29-
routeRules?: any
30-
rollupConfig?: any
31-
}
27+
extends DeepPartial<HarmonyOptions>,
28+
C12InputConfig<HarmonyConfig> {}
3229

3330
export interface Harmony {
3431
options: HarmonyOptions

0 commit comments

Comments
 (0)