15 lines
528 B
TypeScript
15 lines
528 B
TypeScript
import type { App } from 'vue';
|
|
import { analyzingIconForIconfont, eIconSymbol, iconList } from "./utils";
|
|
import { Options } from "./utils/config";
|
|
export * from './components/eInput';
|
|
export * from './components/eIcon';
|
|
export * from './components/ePopover';
|
|
export * from './components/eScrollbar';
|
|
export * from './components/eIconPicker';
|
|
export { iconList, analyzingIconForIconfont, eIconSymbol, };
|
|
declare const _default: {
|
|
version: string;
|
|
install(app: App, options?: Options): void;
|
|
};
|
|
export default _default;
|