mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
31 lines (30 loc) • 533 B
TypeScript
import { Props } from './types';
/**
* 组件名称
*/
export declare const name = "me-text-animation";
/**
* 类型枚举
*/
export declare const typeGroup: {
/**
* 默认
*/
default: string;
/**
* 边框
*/
border: string;
options(): {
value: string;
}[];
some(value: unknown): boolean;
};
/**
* 容器字体大小
*/
export declare const viewBoxSize = 50;
/**
* 合并默认和传参
*/
export declare const mergeDefaultWithProps: (param: Props) => Required<Props>;