seehar-design-vue
Version:
Seehar Design Vue - A Vue.js 3 UI library
11 lines (10 loc) • 311 B
TypeScript
/**
* @Author: seehar
* @Date: 2022/7/17 15:48
* @Description: 组件入口
*/
import { App } from 'vue';
export * from './component';
import { SeeharUIConfiguration } from './types/variant';
declare const SeeharDesign: (Vue: App, configuration: SeeharUIConfiguration) => void;
export default SeeharDesign;