14 lines
382 B
TypeScript
Raw Normal View History

2024-08-02 18:19:39 +08:00
import type { App } from 'vue';
2024-01-29 09:26:07 +08:00
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;