comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
10 lines (8 loc) • 331 B
TypeScript
import { Component, ExtractPropTypes, PropType } from 'vue';
export declare const stepItemProps: {
readonly title: StringConstructor;
readonly content: StringConstructor;
readonly icon: PropType<Component>;
readonly error: BooleanConstructor;
};
export type StepItemProps = ExtractPropTypes<typeof stepItemProps>;