@polyv/iar-coupon-ui 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.es.d.ts ADDED
@@ -0,0 +1,75 @@
1
+ import { ComponentOptionsMixin } from 'vue';
2
+ import { Coupon } from '@polyv/coupon-sdk';
3
+ import { DefineComponent } from 'vue';
4
+ import { ExtractPropTypes } from 'vue';
5
+ import { ValidatorFunction } from 'vue-types/dist/types';
6
+ import { VueTypeValidableDef } from 'vue-types';
7
+
8
+ export declare const NormalCouponCommonList: DefineComponent< {
9
+ couponTarget: VueTypeValidableDef<Coupon, ValidatorFunction<Coupon>> & {
10
+ required: true;
11
+ };
12
+ }, {
13
+ refreshList: () => void;
14
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, Readonly<ExtractPropTypes< {
15
+ couponTarget: VueTypeValidableDef<Coupon, ValidatorFunction<Coupon>> & {
16
+ required: true;
17
+ };
18
+ }>>, {}>;
19
+
20
+ export declare interface NormalCouponCommonListInstance {
21
+ /** 刷新优惠券列表 */
22
+ refreshList: () => void;
23
+ }
24
+
25
+ export declare const NormalCouponPendant: DefineComponent< {
26
+ visible: VueTypeValidableDef<boolean, ValidatorFunction<boolean>> & {
27
+ default: boolean;
28
+ } & {
29
+ default: boolean;
30
+ };
31
+ iconUrl: VueTypeValidableDef<string, ValidatorFunction<string>> & {
32
+ default: string;
33
+ } & {
34
+ default: string;
35
+ };
36
+ couponTarget: VueTypeValidableDef<Coupon, ValidatorFunction<Coupon>> & {
37
+ required: true;
38
+ };
39
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, Readonly<ExtractPropTypes< {
40
+ visible: VueTypeValidableDef<boolean, ValidatorFunction<boolean>> & {
41
+ default: boolean;
42
+ } & {
43
+ default: boolean;
44
+ };
45
+ iconUrl: VueTypeValidableDef<string, ValidatorFunction<string>> & {
46
+ default: string;
47
+ } & {
48
+ default: string;
49
+ };
50
+ couponTarget: VueTypeValidableDef<Coupon, ValidatorFunction<Coupon>> & {
51
+ required: true;
52
+ };
53
+ }>>, {
54
+ visible: boolean;
55
+ iconUrl: string;
56
+ }>;
57
+
58
+ export declare const NormalCouponUserList: DefineComponent< {
59
+ couponTarget: VueTypeValidableDef<Coupon, ValidatorFunction<Coupon>> & {
60
+ required: true;
61
+ };
62
+ }, {
63
+ refreshList: () => void;
64
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, Readonly<ExtractPropTypes< {
65
+ couponTarget: VueTypeValidableDef<Coupon, ValidatorFunction<Coupon>> & {
66
+ required: true;
67
+ };
68
+ }>>, {}>;
69
+
70
+ export declare interface NormalCouponUserListInstance {
71
+ /** 刷新优惠券列表 */
72
+ refreshList: () => void;
73
+ }
74
+
75
+ export { }