Skip to content

Commit

Permalink
fix: fix extends base type resolver
Browse files Browse the repository at this point in the history
fix #5
  • Loading branch information
becem-gharbi committed May 13, 2023
1 parent 33e1e21 commit ceb0b1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/runtime/components/NaiveColorModeSwitch.vue
Expand Up @@ -11,7 +11,7 @@ import NaiveIcon from "./NaiveIcon.vue"
import useNaiveColorMode from "../composables/useNaiveColorMode";
import { NButton, ButtonProps } from "naive-ui"
interface Props extends ButtonProps { }
interface Props extends /* @vue-ignore */ ButtonProps { }
defineProps<Props>()
const { colorModePreference } = useNaiveColorMode()
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/NaiveConfig.vue
Expand Up @@ -220,7 +220,7 @@ const defaultMobileOrTabletTheme: GlobalThemeOverrides = {
}
interface NaiveConfigProps
extends Omit<ConfigProviderProps, "themeOverrides" | "theme"> {
extends /* @vue-ignore */ Omit<ConfigProviderProps, "themeOverrides" | "theme"> {
themeConfig?: ThemeConfig;
}
const config = useRuntimeConfig().public.naiveui
Expand Down

0 comments on commit ceb0b1d

Please sign in to comment.