UNPKG

@bg-dev/nuxt-naiveui

Version:

Unofficial Naive UI module for Nuxt

15 lines (14 loc) 321 B
import type { Theme } from '../types/index.js'; interface Colors { primary: string; success: string; warning: string; error: string; info: string; neutral: string; } export declare function generateAntdColorThemes(inputColors?: Partial<Colors>): { light: Theme; dark: Theme; }; export {};