@aplus-frontend/ui
Version:
25 lines (24 loc) • 558 B
TypeScript
import { PropType } from 'vue';
import { ApProductInfoValue } from './interface';
export declare const ApProductInfoProps: () => {
title: {
type: StringConstructor;
default: string;
};
imgSrc: {
type: StringConstructor;
default: string;
};
preview: {
type: BooleanConstructor;
default: boolean;
};
values: {
type: PropType<ApProductInfoValue[]>;
default: () => never[];
};
disableCopy: {
type: BooleanConstructor;
default: boolean;
};
};