@factoringplus/pl-components-pack-v3 0.16.0-pre-01 → 0.16.1-pre-2

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.
Files changed (53) hide show
  1. package/dist/components/pl-checkbox-plus/index.d.ts +6 -0
  2. package/dist/components/pl-checkbox-plus/pl-checkbox-plus.vue.d.ts +65 -0
  3. package/dist/components/pl-date-picker-plus/common/components/PlDatePickerRangeWrapper.vue.d.ts +83 -0
  4. package/dist/components/pl-date-picker-plus/common/components/PlDatePickerWrapper.vue.d.ts +69 -0
  5. package/dist/components/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +92 -0
  6. package/dist/components/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +102 -0
  7. package/dist/components/pl-dialog/pl-dialog.stories.d.ts +759 -0
  8. package/dist/components/pl-dialog/pl-dialog.vue.d.ts +106 -0
  9. package/dist/components/pl-form-item/pl-form-item.vue.d.ts +9 -0
  10. package/dist/components/pl-icon/pl-icon.vue.d.ts +14 -0
  11. package/dist/components/pl-label/pl-label.vue.d.ts +32 -0
  12. package/dist/components/pl-multitab/components/pl-tab-card.vue.d.ts +50 -0
  13. package/dist/components/pl-option/pl-option.vue.d.ts +122 -0
  14. package/dist/components/pl-radio/index.d.ts +6 -0
  15. package/dist/components/pl-radio/pl-radio.vue.d.ts +69 -0
  16. package/dist/components/pl-scrollbar/pl-scrollbar.vue.d.ts +61 -0
  17. package/dist/components/pl-scrollbar/utils/getSizeWithUnits.d.ts +1 -0
  18. package/dist/components/pl-skeleton/pl-skeleton.vue.d.ts +38 -0
  19. package/dist/components/pl-switch/index.d.ts +6 -0
  20. package/dist/components/pl-switch/pl-switch.vue.d.ts +47 -0
  21. package/dist/components/pl-table-plus/components/row-mask.vue.d.ts +52 -0
  22. package/dist/components/pl-table-plus/pl-table-plus.vue.d.ts +93 -0
  23. package/dist/components/pl-tabs/components/pl-tab-counter.vue.d.ts +21 -0
  24. package/dist/components/pl-tabs/components/pl-tab.vue.d.ts +50 -0
  25. package/dist/components/pl-text/components/pl-body1.vue.d.ts +9 -0
  26. package/dist/components/pl-text/components/pl-body2.vue.d.ts +9 -0
  27. package/dist/components/pl-text/components/pl-body3.vue.d.ts +9 -0
  28. package/dist/components/pl-text/components/pl-bodyu.vue.d.ts +9 -0
  29. package/dist/components/pl-text/components/pl-btn1.vue.d.ts +9 -0
  30. package/dist/components/pl-text/components/pl-btn2.vue.d.ts +9 -0
  31. package/dist/components/pl-text/components/pl-btn3.vue.d.ts +9 -0
  32. package/dist/components/pl-text/components/pl-cap.vue.d.ts +9 -0
  33. package/dist/components/pl-text/components/pl-h1.vue.d.ts +9 -0
  34. package/dist/components/pl-text/components/pl-h2.vue.d.ts +9 -0
  35. package/dist/components/pl-text/components/pl-h3.vue.d.ts +9 -0
  36. package/dist/components/pl-text/components/pl-h4.vue.d.ts +9 -0
  37. package/dist/components/pl-text/components/pl-sub1.vue.d.ts +9 -0
  38. package/dist/components/pl-text/components/pl-sub2.vue.d.ts +9 -0
  39. package/dist/components/pl-text/components/pl-system.vue.d.ts +9 -0
  40. package/dist/components/pl-text/components/pl-tag.vue.d.ts +9 -0
  41. package/dist/components/pl-text/components/pl-title1.vue.d.ts +9 -0
  42. package/dist/components/pl-text/components/pl-title2.vue.d.ts +9 -0
  43. package/dist/components/pl-text/components/pl-title3.vue.d.ts +9 -0
  44. package/dist/directives/index.d.ts +3 -0
  45. package/dist/directives/vTap.d.ts +2 -0
  46. package/dist/directives/vTouchOutside.d.ts +2 -0
  47. package/dist/main.d.ts +1 -0
  48. package/dist/mockServiceWorker.js +364 -364
  49. package/dist/pl-components-pack-v3.d.ts +1 -0
  50. package/dist/pl-components-pack-v3.es.js +12347 -12611
  51. package/dist/pl-components-pack-v3.umd.js +30 -30
  52. package/dist/style.css +1 -1
  53. package/package.json +3 -1
@@ -0,0 +1,93 @@
1
+ interface IProps {
2
+ headers: {
3
+ label: string;
4
+ key: string;
5
+ width?: number;
6
+ maxWidthContent?: string;
7
+ }[];
8
+ hideHeadersOnMobile: string[];
9
+ rows: Record<string, string | number>[];
10
+ isLoading?: boolean;
11
+ withHover?: boolean;
12
+ isSelectable?: boolean;
13
+ selectedRows?: Record<string, string | number>[];
14
+ uniqKey: string | '';
15
+ defaultWrapperWidth?: number | null;
16
+ }
17
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
18
+ headers: () => never[];
19
+ rows: () => never[];
20
+ isLoading: boolean;
21
+ isSelectable: boolean;
22
+ selectedRows: () => never[];
23
+ uniqKey: string;
24
+ hideHeadersOnMobile: () => never[];
25
+ defaultWrapperWidth: null;
26
+ }>, {
27
+ resetSelectedRows: () => void;
28
+ selectAllRows: () => void;
29
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
30
+ infiniteScroll: (...args: any[]) => void;
31
+ "update:selectedRows": (...args: any[]) => void;
32
+ rowClick: (...args: any[]) => void;
33
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
34
+ headers: () => never[];
35
+ rows: () => never[];
36
+ isLoading: boolean;
37
+ isSelectable: boolean;
38
+ selectedRows: () => never[];
39
+ uniqKey: string;
40
+ hideHeadersOnMobile: () => never[];
41
+ defaultWrapperWidth: null;
42
+ }>>> & {
43
+ onInfiniteScroll?: ((...args: any[]) => any) | undefined;
44
+ "onUpdate:selectedRows"?: ((...args: any[]) => any) | undefined;
45
+ onRowClick?: ((...args: any[]) => any) | undefined;
46
+ }, {
47
+ isSelectable: boolean;
48
+ headers: {
49
+ label: string;
50
+ key: string;
51
+ width?: number | undefined;
52
+ maxWidthContent?: string | undefined;
53
+ }[];
54
+ hideHeadersOnMobile: string[];
55
+ rows: Record<string, string | number>[];
56
+ isLoading: boolean;
57
+ selectedRows: Record<string, string | number>[];
58
+ uniqKey: string;
59
+ defaultWrapperWidth: number | null;
60
+ }, {}>, Partial<Record<string, (_: {
61
+ row: Record<string, string | number>;
62
+ }) => any>> & {
63
+ noDataContainer?(_: {}): any;
64
+ mobileTop?(_: {
65
+ row: Record<string, string | number>;
66
+ }): any;
67
+ mobileBottom?(_: {
68
+ row: Record<string, string | number>;
69
+ }): any;
70
+ }>;
71
+ export default _default;
72
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
73
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
74
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
75
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
76
+ } : {
77
+ type: import('vue').PropType<T[K]>;
78
+ required: true;
79
+ };
80
+ };
81
+ declare type __VLS_WithDefaults<P, D> = {
82
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
83
+ default: D[K];
84
+ }> : P[K];
85
+ };
86
+ declare type __VLS_Prettify<T> = {
87
+ [K in keyof T]: T[K];
88
+ } & {};
89
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
90
+ new (): {
91
+ $slots: S;
92
+ };
93
+ };
@@ -0,0 +1,21 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
+ active: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ active: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ }>>, {
12
+ active: boolean;
13
+ }, {}>, {
14
+ default?(_: {}): any;
15
+ }>;
16
+ export default _default;
17
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,50 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ label: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ active: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ disabled: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ icon: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ counter: {
19
+ type: NumberConstructor;
20
+ default: null;
21
+ };
22
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
23
+ label: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ active: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ disabled: {
32
+ type: BooleanConstructor;
33
+ default: boolean;
34
+ };
35
+ icon: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ counter: {
40
+ type: NumberConstructor;
41
+ default: null;
42
+ };
43
+ }>>, {
44
+ label: string;
45
+ disabled: boolean;
46
+ icon: string;
47
+ active: boolean;
48
+ counter: number;
49
+ }, {}>;
50
+ export default _default;
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,3 @@
1
+ export declare const PlDirectives: {
2
+ install(app: any): void;
3
+ };
@@ -0,0 +1,2 @@
1
+ import { Directive } from 'vue';
2
+ export declare const vTap: Directive<HTMLElement, () => void>;
@@ -0,0 +1,2 @@
1
+ import { Directive } from 'vue';
2
+ export declare const vTouchOutside: Directive;
package/dist/main.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};