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