vuestic-ui
Version:
Vue 3 UI Framework
17 lines (16 loc) • 418 B
TypeScript
import { PropType } from 'vue';
export declare const useHoverStyleProps: {
hoverBehavior: {
type: PropType<"opacity" | "mask">;
default: string;
validator: (value: string) => boolean;
};
hoverOpacity: {
type: (StringConstructor | NumberConstructor)[];
default: number;
};
hoverMaskColor: {
type: StringConstructor;
default: string;
};
};