comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
12 lines (10 loc) • 426 B
TypeScript
import { Component, ExtractPropTypes, PropType } from 'vue';
export declare const timelineItemProps: {
readonly time: StringConstructor;
readonly reverse: BooleanConstructor;
readonly color: StringConstructor;
readonly fill: BooleanConstructor;
readonly icon: PropType<Component>;
readonly dashedLine: BooleanConstructor;
};
export type TimelineItemProps = ExtractPropTypes<typeof timelineItemProps>;