comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
12 lines (10 loc) • 360 B
TypeScript
import { PropType, ExtractPropTypes } from 'vue';
export declare const previewImageProps: {
readonly current: NumberConstructor;
readonly list: {
readonly type: PropType<string[]>;
readonly required: true;
};
readonly destroy: FunctionConstructor;
};
export type PreviewImageProps = ExtractPropTypes<typeof previewImageProps>;