comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
39 lines (37 loc) • 1.16 kB
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
import { ComicDisplay } from '../../../utils';
export declare const elevatorProps: {
readonly height: {
readonly type: StringConstructor;
readonly default: "100%";
};
readonly offset: {
readonly type: NumberConstructor;
readonly default: 0;
};
readonly postion: {
readonly type: PropType<"left-top" | "left-bottom" | "right-top" | "right-bottom" | "none">;
readonly default: "right-bottom";
};
readonly hasMenu: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly menuSize: {
readonly type: StringConstructor;
readonly default: "40px";
};
readonly fold: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly scrollbarDisplay: {
readonly type: PropType<ComicDisplay>;
readonly default: "always";
};
};
export type ElevatorProps = ExtractPropTypes<typeof elevatorProps>;
export declare const elevatorEmits: {
change: (value: string) => boolean;
};
export type ElevatorEmits = typeof elevatorEmits;