comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
18 lines (16 loc) • 538 B
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
import { ComicDir } from '../../../utils';
export declare const stepProps: {
readonly direction: {
readonly type: PropType<ComicDir>;
readonly default: "horizontal";
};
readonly active: NumberConstructor;
readonly center: BooleanConstructor;
readonly activeColor: StringConstructor;
readonly border: {
readonly type: BooleanConstructor;
readonly default: true;
};
};
export type StepProps = ExtractPropTypes<typeof stepProps>;