UNPKG

@aplus-frontend/ui

Version:

29 lines (28 loc) 640 B
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; }; showImg: { type: BooleanConstructor; default: boolean; }; };