comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
28 lines (26 loc) • 860 B
TypeScript
import { Placement } from '@floating-ui/vue';
import { ExtractPropTypes, PropType } from 'vue';
export declare const popperProps: {
readonly trigger: PropType<Element>;
readonly show: BooleanConstructor;
readonly hideArrow: BooleanConstructor;
readonly offset: {
readonly type: NumberConstructor;
readonly default: 10;
};
readonly placement: {
readonly type: PropType<Placement>;
readonly default: "bottom";
};
readonly arrowLeft: BooleanConstructor;
readonly transitionName: {
readonly type: StringConstructor;
readonly default: "popper";
};
readonly effect: {
readonly type: PropType<"light" | "dark">;
readonly default: "light";
};
readonly customClass: StringConstructor;
};
export type PopperProps = ExtractPropTypes<typeof popperProps>;