UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

28 lines (26 loc) 855 B
import { ExtractPropTypes, PropType } from 'vue'; import { ComicType, ComicDir } from '../../../utils'; export declare const POSITION_ENUM: { center: string; left: string; right: string; }; export type BorderStyle = CSSStyleDeclaration['borderStyle']; export declare const dividerProps: { readonly direction: { readonly type: PropType<ComicDir>; readonly default: "horizontal"; }; readonly type: PropType<ComicType>; readonly color: StringConstructor; readonly lineWeight: { readonly type: NumberConstructor; readonly default: 1; }; readonly contentPosition: { readonly type: PropType<"left" | "center" | "right">; readonly default: "center"; }; readonly lineStyle: PropType<BorderStyle>; }; export type DividerProps = ExtractPropTypes<typeof dividerProps>;