press-ui
Version:
简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目
14 lines (13 loc) • 540 B
TypeScript
declare function tabClass(active?: boolean, ellipsis?: boolean): string;
declare function tabStyle(data: Record<string, any>): string;
declare function navStyle(color: string, type?: string): string;
declare function trackStyle(data: Record<string, any>): string;
declare function lineStyle(data: Record<string, any>): string;
declare const innerDefault: {
tabClass: typeof tabClass;
tabStyle: typeof tabStyle;
trackStyle: typeof trackStyle;
lineStyle: typeof lineStyle;
navStyle: typeof navStyle;
};
export default innerDefault;