UNPKG

1.89 kBTypeScriptView Raw
1export declare const CouponCell: import("../utils").WithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2 title: StringConstructor;
3 border: {
4 type: BooleanConstructor;
5 default: true;
6 };
7 editable: {
8 type: BooleanConstructor;
9 default: true;
10 };
11 coupons: {
12 type: import("vue").PropType<import("..").CouponInfo[]>;
13 default: () => never[];
14 };
15 currency: {
16 type: import("vue").PropType<string>;
17 default: string;
18 };
19 chosenCoupon: {
20 type: import("vue").PropType<number | number[]>;
21 default: number;
22 };
23}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
24 title: StringConstructor;
25 border: {
26 type: BooleanConstructor;
27 default: true;
28 };
29 editable: {
30 type: BooleanConstructor;
31 default: true;
32 };
33 coupons: {
34 type: import("vue").PropType<import("..").CouponInfo[]>;
35 default: () => never[];
36 };
37 currency: {
38 type: import("vue").PropType<string>;
39 default: string;
40 };
41 chosenCoupon: {
42 type: import("vue").PropType<number | number[]>;
43 default: number;
44 };
45}>> & Readonly<{}>, {
46 border: boolean;
47 currency: string;
48 editable: boolean;
49 coupons: import("..").CouponInfo[];
50 chosenCoupon: number | number[];
51}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
52export default CouponCell;
53export { couponCellProps } from './CouponCell';
54export type { CouponCellProps } from './CouponCell';
55export type { CouponCellThemeVars } from './types';
56declare module 'vue' {
57 interface GlobalComponents {
58 VanCouponCell: typeof CouponCell;
59 }
60}