toku-form-extensions 0.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/README.md +18 -0
- package/dist/components/CustomForm/CustomForm.d.ts +175 -0
- package/dist/components/CustomForm/CustomForm.d.ts.map +1 -0
- package/dist/components/CustomForm/SignupCompleted.d.ts +51 -0
- package/dist/components/CustomForm/SignupCompleted.d.ts.map +1 -0
- package/dist/components/CustomForm/SignupField.d.ts +97 -0
- package/dist/components/CustomForm/SignupField.d.ts.map +1 -0
- package/dist/components/CustomForm/SignupFields.d.ts +52 -0
- package/dist/components/CustomForm/SignupFields.d.ts.map +1 -0
- package/dist/components/CustomForm/index.d.ts +1 -0
- package/dist/composables/useI18n.d.ts +3 -0
- package/dist/composables/useRelatedFields.d.ts +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +20350 -0
- package/dist/index.es.js.map +1 -0
- package/dist/index.umd.js +68 -0
- package/dist/index.umd.js.map +1 -0
- package/dist/style.css +1 -0
- package/dist/types/entities.d.ts +65 -0
- package/dist/types/entities.d.ts.map +1 -0
- package/dist/types/inputField.d.ts +19 -0
- package/dist/types/inputField.d.ts.map +1 -0
- package/dist/types/signUpField.d.ts +12 -0
- package/dist/types/signUpField.d.ts.map +1 -0
- package/dist/utils/parser/index.d.ts +1 -0
- package/dist/utils/parser/parser.d.ts +8 -0
- package/dist/utils/typeChecker.d.ts +3 -0
- package/dist/vite.svg +1 -0
- package/package.json +78 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Vue 3 + TypeScript + Vite
|
|
2
|
+
|
|
3
|
+
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
|
4
|
+
|
|
5
|
+
## Recommended IDE Setup
|
|
6
|
+
|
|
7
|
+
- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
|
8
|
+
|
|
9
|
+
## Type Support For `.vue` Imports in TS
|
|
10
|
+
|
|
11
|
+
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
|
|
12
|
+
|
|
13
|
+
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
|
|
14
|
+
|
|
15
|
+
1. Disable the built-in TypeScript Extension
|
|
16
|
+
1. Run `Extensions: Show Built-in Extensions` from VSCode's command palette
|
|
17
|
+
2. Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
|
|
18
|
+
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import { ComponentOptionsMixin } from 'vue/types/v3-component-options';
|
|
2
|
+
import { DefineComponent, PropType, ExtractPropTypes } from 'vue';
|
|
3
|
+
import { Account, Organization } from '../../types/entities';
|
|
4
|
+
interface SignupRequestData {
|
|
5
|
+
additional_data: Record<string, string | number | Date>;
|
|
6
|
+
customer_metadata: Record<string, string | number | Date>;
|
|
7
|
+
subscription_metadata: Record<string, string | number | Date>;
|
|
8
|
+
invoice_metadata: Record<string, string | number | Date>;
|
|
9
|
+
send_mail: boolean;
|
|
10
|
+
[key: string]: string | number | boolean | Record<string, string | number | Date>;
|
|
11
|
+
}
|
|
12
|
+
type SubmitFormStatus = 'success' | 'error';
|
|
13
|
+
declare const _default: DefineComponent<{
|
|
14
|
+
accounts: {
|
|
15
|
+
type: PropType<Account[]>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
errorMessage: {
|
|
19
|
+
type: PropType<string>;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
errorButtonLabel: {
|
|
23
|
+
type: PropType<string>;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
successMessage: {
|
|
27
|
+
type: PropType<string>;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
successButtonLabel: {
|
|
31
|
+
type: PropType<string>;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
organization: {
|
|
35
|
+
type: PropType<Organization>;
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
customerFields: {
|
|
39
|
+
type: PropType<SignupField[]>;
|
|
40
|
+
required: true;
|
|
41
|
+
};
|
|
42
|
+
invoiceFields: {
|
|
43
|
+
type: PropType<SignupField[]>;
|
|
44
|
+
required: true;
|
|
45
|
+
};
|
|
46
|
+
countryIso: {
|
|
47
|
+
type: PropType<string | null>;
|
|
48
|
+
required: true;
|
|
49
|
+
};
|
|
50
|
+
disableSubmit: {
|
|
51
|
+
type: PropType<boolean>;
|
|
52
|
+
required: true;
|
|
53
|
+
};
|
|
54
|
+
isLoading: {
|
|
55
|
+
type: PropType<boolean>;
|
|
56
|
+
required: true;
|
|
57
|
+
};
|
|
58
|
+
submitFormStatus: {
|
|
59
|
+
type: PropType<SubmitFormStatus>;
|
|
60
|
+
required: true;
|
|
61
|
+
};
|
|
62
|
+
signupCompleted: {
|
|
63
|
+
type: PropType<boolean>;
|
|
64
|
+
required: true;
|
|
65
|
+
};
|
|
66
|
+
isAutocompleteEnabled: {
|
|
67
|
+
type: PropType<boolean>;
|
|
68
|
+
required: true;
|
|
69
|
+
};
|
|
70
|
+
invoiceFieldsTitle: {
|
|
71
|
+
type: PropType<string>;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
customerFieldsTitle: {
|
|
75
|
+
type: PropType<string>;
|
|
76
|
+
default: string;
|
|
77
|
+
};
|
|
78
|
+
buttonLabel: {
|
|
79
|
+
type: PropType<string>;
|
|
80
|
+
default: string;
|
|
81
|
+
};
|
|
82
|
+
sendByEmailText: {
|
|
83
|
+
type: PropType<string>;
|
|
84
|
+
default: string;
|
|
85
|
+
};
|
|
86
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
87
|
+
"submit-form-data": (values: SignupRequestData) => void;
|
|
88
|
+
reset: () => void;
|
|
89
|
+
"autocomplete-subscription": (productId: string) => void;
|
|
90
|
+
"autocomplete-external-id": (externalId: string) => void;
|
|
91
|
+
}, string, Readonly<ExtractPropTypes<{
|
|
92
|
+
accounts: {
|
|
93
|
+
type: PropType<Account[]>;
|
|
94
|
+
required: true;
|
|
95
|
+
};
|
|
96
|
+
errorMessage: {
|
|
97
|
+
type: PropType<string>;
|
|
98
|
+
default: string;
|
|
99
|
+
};
|
|
100
|
+
errorButtonLabel: {
|
|
101
|
+
type: PropType<string>;
|
|
102
|
+
default: string;
|
|
103
|
+
};
|
|
104
|
+
successMessage: {
|
|
105
|
+
type: PropType<string>;
|
|
106
|
+
default: string;
|
|
107
|
+
};
|
|
108
|
+
successButtonLabel: {
|
|
109
|
+
type: PropType<string>;
|
|
110
|
+
default: string;
|
|
111
|
+
};
|
|
112
|
+
organization: {
|
|
113
|
+
type: PropType<Organization>;
|
|
114
|
+
required: true;
|
|
115
|
+
};
|
|
116
|
+
customerFields: {
|
|
117
|
+
type: PropType<SignupField[]>;
|
|
118
|
+
required: true;
|
|
119
|
+
};
|
|
120
|
+
invoiceFields: {
|
|
121
|
+
type: PropType<SignupField[]>;
|
|
122
|
+
required: true;
|
|
123
|
+
};
|
|
124
|
+
countryIso: {
|
|
125
|
+
type: PropType<string | null>;
|
|
126
|
+
required: true;
|
|
127
|
+
};
|
|
128
|
+
disableSubmit: {
|
|
129
|
+
type: PropType<boolean>;
|
|
130
|
+
required: true;
|
|
131
|
+
};
|
|
132
|
+
isLoading: {
|
|
133
|
+
type: PropType<boolean>;
|
|
134
|
+
required: true;
|
|
135
|
+
};
|
|
136
|
+
submitFormStatus: {
|
|
137
|
+
type: PropType<SubmitFormStatus>;
|
|
138
|
+
required: true;
|
|
139
|
+
};
|
|
140
|
+
signupCompleted: {
|
|
141
|
+
type: PropType<boolean>;
|
|
142
|
+
required: true;
|
|
143
|
+
};
|
|
144
|
+
isAutocompleteEnabled: {
|
|
145
|
+
type: PropType<boolean>;
|
|
146
|
+
required: true;
|
|
147
|
+
};
|
|
148
|
+
invoiceFieldsTitle: {
|
|
149
|
+
type: PropType<string>;
|
|
150
|
+
default: string;
|
|
151
|
+
};
|
|
152
|
+
customerFieldsTitle: {
|
|
153
|
+
type: PropType<string>;
|
|
154
|
+
default: string;
|
|
155
|
+
};
|
|
156
|
+
buttonLabel: {
|
|
157
|
+
type: PropType<string>;
|
|
158
|
+
default: string;
|
|
159
|
+
};
|
|
160
|
+
sendByEmailText: {
|
|
161
|
+
type: PropType<string>;
|
|
162
|
+
default: string;
|
|
163
|
+
};
|
|
164
|
+
}>>, {
|
|
165
|
+
errorMessage: string;
|
|
166
|
+
errorButtonLabel: string;
|
|
167
|
+
successMessage: string;
|
|
168
|
+
successButtonLabel: string;
|
|
169
|
+
invoiceFieldsTitle: string;
|
|
170
|
+
customerFieldsTitle: string;
|
|
171
|
+
buttonLabel: string;
|
|
172
|
+
sendByEmailText: string;
|
|
173
|
+
}>;
|
|
174
|
+
export default _default;
|
|
175
|
+
//# sourceMappingURL=CustomForm.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/CustomForm"],"names":[],"mappings":"AAsDA;AAOA,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAMzD,OAAO,sBAAsB,CAAC;AAI9B,UAAU,iBAAiB;IACzB,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IACxD,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IAC1D,qBAAqB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IAC9D,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;IACzD,SAAS,EAAE,OAAO,CAAC;IACnB,CAAC,GAAG,EAAE,MAAM,GACR,MAAM,GACN,MAAM,GACN,OAAO,GACP,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;CAC5C;AAED,KAAK,gBAAgB,GAAG,SAAS,GAAG,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiZ5C,wBAAkD"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ComponentOptionsMixin } from 'vue/types/v3-component-options';
|
|
2
|
+
import { DefineComponent, PropType, ExtractPropTypes } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<{
|
|
4
|
+
type: {
|
|
5
|
+
type: PropType<"error" | "success">;
|
|
6
|
+
required: true;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
errorMessage: {
|
|
10
|
+
type: PropType<string>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
errorButtonLabel: {
|
|
14
|
+
type: PropType<string>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
successMessage: {
|
|
18
|
+
type: PropType<string>;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
successButtonLabel: {
|
|
22
|
+
type: PropType<string>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "reset"[], string, Readonly<ExtractPropTypes<{
|
|
26
|
+
type: {
|
|
27
|
+
type: PropType<"error" | "success">;
|
|
28
|
+
required: true;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
errorMessage: {
|
|
32
|
+
type: PropType<string>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
errorButtonLabel: {
|
|
36
|
+
type: PropType<string>;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
successMessage: {
|
|
40
|
+
type: PropType<string>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
successButtonLabel: {
|
|
44
|
+
type: PropType<string>;
|
|
45
|
+
required: true;
|
|
46
|
+
};
|
|
47
|
+
}>>, {
|
|
48
|
+
type: "error" | "success";
|
|
49
|
+
}>;
|
|
50
|
+
export default _default;
|
|
51
|
+
//# sourceMappingURL=SignupCompleted.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SignupCompleted.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/SignupCompleted"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6HA,wBAAkD"}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { ComponentOptionsMixin } from 'vue/types/v3-component-options';
|
|
2
|
+
import { DefineComponent, PropType, ExtractPropTypes } from 'vue';
|
|
3
|
+
import { InputFieldRegex } from '../../types/inputField';
|
|
4
|
+
declare const _default: DefineComponent<{
|
|
5
|
+
id: {
|
|
6
|
+
type: PropType<string>;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
value: {
|
|
10
|
+
type: PropType<string | number | Date>;
|
|
11
|
+
};
|
|
12
|
+
label: {
|
|
13
|
+
type: PropType<string>;
|
|
14
|
+
};
|
|
15
|
+
disabled: {
|
|
16
|
+
type: PropType<boolean>;
|
|
17
|
+
};
|
|
18
|
+
displayInfo: {
|
|
19
|
+
type: PropType<boolean>;
|
|
20
|
+
};
|
|
21
|
+
type: {
|
|
22
|
+
type: PropType<string>;
|
|
23
|
+
};
|
|
24
|
+
decimals: {
|
|
25
|
+
type: PropType<number>;
|
|
26
|
+
};
|
|
27
|
+
leftIcon: {
|
|
28
|
+
type: PropType<string>;
|
|
29
|
+
};
|
|
30
|
+
rightIcon: {
|
|
31
|
+
type: PropType<string>;
|
|
32
|
+
};
|
|
33
|
+
placeholder: {
|
|
34
|
+
type: PropType<string>;
|
|
35
|
+
};
|
|
36
|
+
helperText: {
|
|
37
|
+
type: PropType<string>;
|
|
38
|
+
};
|
|
39
|
+
errorText: {
|
|
40
|
+
type: PropType<string>;
|
|
41
|
+
};
|
|
42
|
+
required: {
|
|
43
|
+
type: PropType<boolean>;
|
|
44
|
+
};
|
|
45
|
+
regex: {
|
|
46
|
+
type: PropType<InputFieldRegex>;
|
|
47
|
+
};
|
|
48
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
49
|
+
input: (value: string | number | Date) => void;
|
|
50
|
+
"right-icon-click": () => void;
|
|
51
|
+
}, string, Readonly<ExtractPropTypes<{
|
|
52
|
+
id: {
|
|
53
|
+
type: PropType<string>;
|
|
54
|
+
required: true;
|
|
55
|
+
};
|
|
56
|
+
value: {
|
|
57
|
+
type: PropType<string | number | Date>;
|
|
58
|
+
};
|
|
59
|
+
label: {
|
|
60
|
+
type: PropType<string>;
|
|
61
|
+
};
|
|
62
|
+
disabled: {
|
|
63
|
+
type: PropType<boolean>;
|
|
64
|
+
};
|
|
65
|
+
displayInfo: {
|
|
66
|
+
type: PropType<boolean>;
|
|
67
|
+
};
|
|
68
|
+
type: {
|
|
69
|
+
type: PropType<string>;
|
|
70
|
+
};
|
|
71
|
+
decimals: {
|
|
72
|
+
type: PropType<number>;
|
|
73
|
+
};
|
|
74
|
+
leftIcon: {
|
|
75
|
+
type: PropType<string>;
|
|
76
|
+
};
|
|
77
|
+
rightIcon: {
|
|
78
|
+
type: PropType<string>;
|
|
79
|
+
};
|
|
80
|
+
placeholder: {
|
|
81
|
+
type: PropType<string>;
|
|
82
|
+
};
|
|
83
|
+
helperText: {
|
|
84
|
+
type: PropType<string>;
|
|
85
|
+
};
|
|
86
|
+
errorText: {
|
|
87
|
+
type: PropType<string>;
|
|
88
|
+
};
|
|
89
|
+
required: {
|
|
90
|
+
type: PropType<boolean>;
|
|
91
|
+
};
|
|
92
|
+
regex: {
|
|
93
|
+
type: PropType<InputFieldRegex>;
|
|
94
|
+
};
|
|
95
|
+
}>>, {}>;
|
|
96
|
+
export default _default;
|
|
97
|
+
//# sourceMappingURL=SignupField.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SignupField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/SignupField"],"names":[],"mappings":"AAmDA;AAMA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,sBAAsB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsT9B,wBAAkD"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { ComponentOptionsMixin } from 'vue/types/v3-component-options';
|
|
2
|
+
import { DefineComponent, PropType, ExtractPropTypes } from 'vue';
|
|
3
|
+
import { Account } from '../../types/entities';
|
|
4
|
+
declare const _default: DefineComponent<{
|
|
5
|
+
fieldsType: {
|
|
6
|
+
type: PropType<"invoice" | "customer">;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
title: {
|
|
10
|
+
type: PropType<string>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
fields: {
|
|
14
|
+
type: PropType<SignupField[]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
autocomplete: {
|
|
18
|
+
type: PropType<boolean>;
|
|
19
|
+
};
|
|
20
|
+
accounts: {
|
|
21
|
+
type: PropType<Account[]>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
25
|
+
input: (value: {
|
|
26
|
+
id: string;
|
|
27
|
+
value: string | number | Date;
|
|
28
|
+
}) => void;
|
|
29
|
+
search: () => void;
|
|
30
|
+
}, string, Readonly<ExtractPropTypes<{
|
|
31
|
+
fieldsType: {
|
|
32
|
+
type: PropType<"invoice" | "customer">;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
title: {
|
|
36
|
+
type: PropType<string>;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
fields: {
|
|
40
|
+
type: PropType<SignupField[]>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
autocomplete: {
|
|
44
|
+
type: PropType<boolean>;
|
|
45
|
+
};
|
|
46
|
+
accounts: {
|
|
47
|
+
type: PropType<Account[]>;
|
|
48
|
+
required: true;
|
|
49
|
+
};
|
|
50
|
+
}>>, {}>;
|
|
51
|
+
export default _default;
|
|
52
|
+
//# sourceMappingURL=SignupFields.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SignupFields.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CustomForm/SignupFields"],"names":[],"mappings":"AAiEA;AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmP3C,wBAAkD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CustomForm } from "./CustomForm";
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components/CustomForm';
|