GamePortrait/node_modules/vant/lib/grid-item/GridItem.d.ts

46 lines
1.7 KiB
TypeScript

import { type PropType, type ExtractPropTypes } from 'vue';
import { type BadgeProps } from '../badge';
export declare const gridItemProps: {
to: PropType<import("vue-router").RouteLocationRaw>;
url: StringConstructor;
replace: BooleanConstructor;
} & {
dot: BooleanConstructor;
text: StringConstructor;
icon: StringConstructor;
badge: (NumberConstructor | StringConstructor)[];
iconColor: StringConstructor;
iconPrefix: StringConstructor;
badgeProps: PropType<Partial<BadgeProps>>;
};
export type GridItemProps = ExtractPropTypes<typeof gridItemProps>;
declare const _default: import("vue").DefineComponent<{
to: PropType<import("vue-router").RouteLocationRaw>;
url: StringConstructor;
replace: BooleanConstructor;
} & {
dot: BooleanConstructor;
text: StringConstructor;
icon: StringConstructor;
badge: (NumberConstructor | StringConstructor)[];
iconColor: StringConstructor;
iconPrefix: StringConstructor;
badgeProps: PropType<Partial<BadgeProps>>;
}, (() => JSX.Element) | undefined, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
to: PropType<import("vue-router").RouteLocationRaw>;
url: StringConstructor;
replace: BooleanConstructor;
} & {
dot: BooleanConstructor;
text: StringConstructor;
icon: StringConstructor;
badge: (NumberConstructor | StringConstructor)[];
iconColor: StringConstructor;
iconPrefix: StringConstructor;
badgeProps: PropType<Partial<BadgeProps>>;
}>>, {
replace: boolean;
dot: boolean;
}>;
export default _default;