2024-01-29 09:26:07 +08:00

14 lines
382 B
TypeScript

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;