UNPKG

naive-ui

Version:

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

14 lines (13 loc) 382 B
import type { App } from 'vue'; type ComponentType = any; export interface NUiInstance { version: string; componentPrefix: string; install: (app: App) => void; } interface NUiCreateOptions { components?: ComponentType[]; componentPrefix?: string; } declare function create({ componentPrefix, components }?: NUiCreateOptions): NUiInstance; export default create;