comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
17 lines (15 loc) • 537 B
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
import { ComicDisplay } from '../../../utils';
export declare const scrollbarProps: {
readonly height: StringConstructor;
readonly display: {
readonly type: PropType<ComicDisplay>;
readonly default: "hover";
};
readonly maxHeight: StringConstructor;
};
export type ScrollbarProps = ExtractPropTypes<typeof scrollbarProps>;
export declare const scrollbarEmits: {
scroll: (evt: Event) => boolean;
};
export type ScrollbarEmits = typeof scrollbarEmits;