UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

11 lines (10 loc) 421 B
import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; export declare function self(vars: ThemeCommonVars): { resizableTriggerColorHover: string; resizableTriggerColor: string; }; export type SplitThemeVars = ReturnType<typeof self>; declare const themeLight: Theme<'Split', SplitThemeVars>; export default themeLight; export type SplitTheme = typeof themeLight;