press-ui
Version:
简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目
78 lines (77 loc) • 1.58 kB
TypeScript
declare const innerDefault: {
props: {
src: {
type: StringConstructor;
default: string;
};
mode: {
type: StringConstructor;
default: string;
};
width: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
height: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
round: {
type: BooleanConstructor;
default: boolean;
};
radius: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
lazyLoad: {
type: BooleanConstructor;
default: boolean;
};
showMenuByLongpress: {
type: BooleanConstructor;
default: boolean;
};
loadingIcon: {
type: StringConstructor;
default: string;
};
errorIcon: {
type: StringConstructor;
default: string;
};
showLoading: {
type: BooleanConstructor;
default: boolean;
};
showError: {
type: BooleanConstructor;
default: boolean;
};
fade: {
type: BooleanConstructor;
default: boolean;
};
webp: {
type: BooleanConstructor;
default: boolean;
};
duration: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
backgroundColor: {
type: StringConstructor;
default: string;
};
customStyle: {
type: StringConstructor;
default: string;
};
transitionStyle: {
type: StringConstructor;
default: string;
};
};
};
export default innerDefault;