comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
11 lines (9 loc) • 323 B
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
export declare const timelineProps: {
readonly timePosition: {
readonly type: PropType<"top" | "bottom">;
readonly default: "bottom";
};
readonly cross: BooleanConstructor;
};
export type TimelineProps = ExtractPropTypes<typeof timelineProps>;