lty-protocol 1.0.40 → 1.0.42
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 +133 -0
- package/dist/{views/Ethernet.vue.d.ts → components/base/Panel.vue.d.ts} +4 -2
- package/dist/components/{Tab.vue.d.ts → base/Tab.vue.d.ts} +1 -3
- package/dist/components/{InputNumber.vue.d.ts → base/baseComponents/Checkbox.vue.d.ts} +1 -0
- package/dist/components/base/baseComponents/Input.vue.d.ts +10 -0
- package/dist/components/base/baseComponents/InputNumber.vue.d.ts +11 -0
- package/dist/components/base/baseComponents/Select.vue.d.ts +13 -0
- package/dist/components/base/baseComponents/Table.vue.d.ts +28 -0
- package/dist/components/base/baseComponents/index.d.ts +9 -0
- package/dist/components/base/index.d.ts +4 -0
- package/dist/components/naiveUi/Panel.vue.d.ts +8 -0
- package/dist/components/naiveUi/baseComponents/Checkbox.vue.d.ts +10 -0
- package/dist/components/naiveUi/baseComponents/Form.vue.d.ts +312 -0
- package/dist/components/naiveUi/baseComponents/Input.vue.d.ts +11 -0
- package/dist/components/naiveUi/baseComponents/InputNumber.vue.d.ts +14 -0
- package/dist/components/naiveUi/baseComponents/IpInput.vue.d.ts +10 -0
- package/dist/components/naiveUi/baseComponents/Select.vue.d.ts +16 -0
- package/dist/components/naiveUi/baseComponents/Switch.vue.d.ts +9 -0
- package/dist/components/naiveUi/baseComponents/Tab.vue.d.ts +23 -0
- package/dist/components/naiveUi/baseComponents/Table.vue.d.ts +43 -0
- package/dist/components/naiveUi/baseComponents/index.d.ts +11 -0
- package/dist/components/naiveUi/index.d.ts +3 -0
- package/dist/i18n/index.d.ts +174 -0
- package/dist/i18n/lang/en.json.d.ts +106 -0
- package/dist/i18n/lang/zh.json.d.ts +106 -0
- package/dist/index.d.ts +3 -5
- package/dist/keys.d.ts +1 -1
- package/dist/lty-protocol.css +1 -1
- package/dist/lty-protocol.mjs +34706 -306
- package/dist/lty-protocol.umd.js +3195 -1
- package/dist/models/collection.d.ts +33 -10
- package/dist/models/modbus/EthernetProtocolItem.d.ts +11 -0
- package/dist/models/modbus/ModbusTCPClientProtocolItem.d.ts +59 -0
- package/dist/models/modbus/ModbusTCPServerProtocolItem.d.ts +11 -0
- package/dist/models/modbus/ModbusTCPSlaveDeviceProtocolItem.d.ts +48 -0
- package/dist/models/modbus/addressAllocator.d.ts +30 -0
- package/dist/models/modbus/configParser.d.ts +1 -0
- package/dist/models/modbus/ethernet.json.d.ts +9 -1
- package/dist/models/modbus/index.d.ts +7 -29
- package/dist/models/modbus/ioMapping.d.ts +33 -0
- package/dist/models/modbus/modbusTcpClient.json.d.ts +112 -0
- package/dist/models/modbus/modbusTcpServer.json.d.ts +108 -0
- package/dist/models/modbus/modbusTcpSlaveDevice.json.d.ts +304 -0
- package/dist/models/modbus/types.d.ts +34 -0
- package/dist/models/protocolItem.d.ts +53 -1
- package/dist/types/base.d.ts +3 -2
- package/dist/utils/eventBus.d.ts +9 -0
- package/dist/utils/getUUID.d.ts +5 -0
- package/dist/utils/index.d.ts +6 -0
- package/dist/views/ProtocolPage.vue.d.ts +27 -0
- package/dist/views/components/general/index.vue.d.ts +301 -0
- package/dist/views/components/index.d.ts +6 -0
- package/dist/views/components/modbusChannel/AddChannelModal.vue.d.ts +15 -0
- package/dist/views/components/modbusChannel/InfoTable.vue.d.ts +2 -0
- package/dist/views/components/modbusChannel/index.vue.d.ts +696 -0
- package/dist/views/components/modbusChannel/options.d.ts +13 -0
- package/dist/views/components/processData/index.vue.d.ts +24 -0
- package/dist/views/components/status/index.vue.d.ts +8620 -0
- package/dist/views/components/status/utils/iec-byte-converter.d.ts +100 -0
- package/dist/views/components/status/utils/index.d.ts +26 -0
- package/dist/views/components/status/xmlFiles/index.d.ts +10 -0
- package/dist/views/index.d.ts +3 -0
- package/package.json +39 -33
- package/dist/plugin.d.ts +0 -3
- /package/dist/components/{IpInput.vue.d.ts → base/baseComponents/IpInput.vue.d.ts} +0 -0
- /package/dist/components/{Input.vue.d.ts → base/baseComponents/Switch.vue.d.ts} +0 -0
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
import { ProtocolItem } from '../../../models';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
instance: ProtocolItem;
|
|
4
|
+
data: any;
|
|
5
|
+
type: any;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
8
|
+
update: (value: Record<string, any>) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
+
onUpdate?: ((value: Record<string, any>) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
12
|
+
formRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
13
|
+
readonly inline: BooleanConstructor;
|
|
14
|
+
readonly labelWidth: import('vue').PropType<number | string>;
|
|
15
|
+
readonly labelAlign: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelAlign>;
|
|
16
|
+
readonly labelPlacement: {
|
|
17
|
+
readonly type: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelPlacement>;
|
|
18
|
+
readonly default: "top";
|
|
19
|
+
};
|
|
20
|
+
readonly model: {
|
|
21
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
22
|
+
readonly default: () => void;
|
|
23
|
+
};
|
|
24
|
+
readonly rules: import('vue').PropType<import('naive-ui').FormRules>;
|
|
25
|
+
readonly disabled: BooleanConstructor;
|
|
26
|
+
readonly size: import('vue').PropType<import('naive-ui/es/form/src/interface').Size>;
|
|
27
|
+
readonly showRequireMark: {
|
|
28
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
29
|
+
readonly default: undefined;
|
|
30
|
+
};
|
|
31
|
+
readonly requireMarkPlacement: import('vue').PropType<"left" | "right" | "right-hanging">;
|
|
32
|
+
readonly showFeedback: {
|
|
33
|
+
readonly type: BooleanConstructor;
|
|
34
|
+
readonly default: true;
|
|
35
|
+
};
|
|
36
|
+
readonly onSubmit: {
|
|
37
|
+
readonly type: import('vue').PropType<(e: Event) => void>;
|
|
38
|
+
readonly default: (e: Event) => void;
|
|
39
|
+
};
|
|
40
|
+
readonly showLabel: {
|
|
41
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
42
|
+
readonly default: undefined;
|
|
43
|
+
};
|
|
44
|
+
readonly validateMessages: import('vue').PropType<Partial<import('naive-ui/es/form/src/interface').FormValidateMessages>>;
|
|
45
|
+
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
46
|
+
blankHeightSmall: string;
|
|
47
|
+
blankHeightMedium: string;
|
|
48
|
+
blankHeightLarge: string;
|
|
49
|
+
lineHeight: string;
|
|
50
|
+
labelTextColor: string;
|
|
51
|
+
asteriskColor: string;
|
|
52
|
+
feedbackTextColorError: string;
|
|
53
|
+
feedbackTextColorWarning: string;
|
|
54
|
+
feedbackTextColor: string;
|
|
55
|
+
feedbackPadding: string;
|
|
56
|
+
feedbackHeightSmall: string;
|
|
57
|
+
feedbackHeightMedium: string;
|
|
58
|
+
feedbackHeightLarge: string;
|
|
59
|
+
feedbackFontSizeSmall: string;
|
|
60
|
+
feedbackFontSizeMedium: string;
|
|
61
|
+
feedbackFontSizeLarge: string;
|
|
62
|
+
labelFontSizeLeftSmall: string;
|
|
63
|
+
labelFontSizeLeftMedium: string;
|
|
64
|
+
labelFontSizeLeftLarge: string;
|
|
65
|
+
labelFontSizeTopSmall: string;
|
|
66
|
+
labelFontSizeTopMedium: string;
|
|
67
|
+
labelFontSizeTopLarge: string;
|
|
68
|
+
labelHeightSmall: string;
|
|
69
|
+
labelHeightMedium: string;
|
|
70
|
+
labelHeightLarge: string;
|
|
71
|
+
labelPaddingVertical: string;
|
|
72
|
+
labelPaddingHorizontal: string;
|
|
73
|
+
labelTextAlignVertical: string;
|
|
74
|
+
labelTextAlignHorizontal: string;
|
|
75
|
+
labelFontWeight: string;
|
|
76
|
+
}, any>>;
|
|
77
|
+
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
78
|
+
blankHeightSmall: string;
|
|
79
|
+
blankHeightMedium: string;
|
|
80
|
+
blankHeightLarge: string;
|
|
81
|
+
lineHeight: string;
|
|
82
|
+
labelTextColor: string;
|
|
83
|
+
asteriskColor: string;
|
|
84
|
+
feedbackTextColorError: string;
|
|
85
|
+
feedbackTextColorWarning: string;
|
|
86
|
+
feedbackTextColor: string;
|
|
87
|
+
feedbackPadding: string;
|
|
88
|
+
feedbackHeightSmall: string;
|
|
89
|
+
feedbackHeightMedium: string;
|
|
90
|
+
feedbackHeightLarge: string;
|
|
91
|
+
feedbackFontSizeSmall: string;
|
|
92
|
+
feedbackFontSizeMedium: string;
|
|
93
|
+
feedbackFontSizeLarge: string;
|
|
94
|
+
labelFontSizeLeftSmall: string;
|
|
95
|
+
labelFontSizeLeftMedium: string;
|
|
96
|
+
labelFontSizeLeftLarge: string;
|
|
97
|
+
labelFontSizeTopSmall: string;
|
|
98
|
+
labelFontSizeTopMedium: string;
|
|
99
|
+
labelFontSizeTopLarge: string;
|
|
100
|
+
labelHeightSmall: string;
|
|
101
|
+
labelHeightMedium: string;
|
|
102
|
+
labelHeightLarge: string;
|
|
103
|
+
labelPaddingVertical: string;
|
|
104
|
+
labelPaddingHorizontal: string;
|
|
105
|
+
labelTextAlignVertical: string;
|
|
106
|
+
labelTextAlignHorizontal: string;
|
|
107
|
+
labelFontWeight: string;
|
|
108
|
+
}, any>>>;
|
|
109
|
+
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
110
|
+
blankHeightSmall: string;
|
|
111
|
+
blankHeightMedium: string;
|
|
112
|
+
blankHeightLarge: string;
|
|
113
|
+
lineHeight: string;
|
|
114
|
+
labelTextColor: string;
|
|
115
|
+
asteriskColor: string;
|
|
116
|
+
feedbackTextColorError: string;
|
|
117
|
+
feedbackTextColorWarning: string;
|
|
118
|
+
feedbackTextColor: string;
|
|
119
|
+
feedbackPadding: string;
|
|
120
|
+
feedbackHeightSmall: string;
|
|
121
|
+
feedbackHeightMedium: string;
|
|
122
|
+
feedbackHeightLarge: string;
|
|
123
|
+
feedbackFontSizeSmall: string;
|
|
124
|
+
feedbackFontSizeMedium: string;
|
|
125
|
+
feedbackFontSizeLarge: string;
|
|
126
|
+
labelFontSizeLeftSmall: string;
|
|
127
|
+
labelFontSizeLeftMedium: string;
|
|
128
|
+
labelFontSizeLeftLarge: string;
|
|
129
|
+
labelFontSizeTopSmall: string;
|
|
130
|
+
labelFontSizeTopMedium: string;
|
|
131
|
+
labelFontSizeTopLarge: string;
|
|
132
|
+
labelHeightSmall: string;
|
|
133
|
+
labelHeightMedium: string;
|
|
134
|
+
labelHeightLarge: string;
|
|
135
|
+
labelPaddingVertical: string;
|
|
136
|
+
labelPaddingHorizontal: string;
|
|
137
|
+
labelTextAlignVertical: string;
|
|
138
|
+
labelTextAlignHorizontal: string;
|
|
139
|
+
labelFontWeight: string;
|
|
140
|
+
}, any>>>;
|
|
141
|
+
}>> & Readonly<{}>, import('naive-ui').FormInst & {
|
|
142
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
143
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
144
|
+
readonly disabled: boolean;
|
|
145
|
+
readonly onSubmit: (e: Event) => void;
|
|
146
|
+
readonly inline: boolean;
|
|
147
|
+
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
148
|
+
readonly model: Record<string, any>;
|
|
149
|
+
readonly showRequireMark: boolean | undefined;
|
|
150
|
+
readonly showFeedback: boolean;
|
|
151
|
+
readonly showLabel: boolean | undefined;
|
|
152
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
153
|
+
P: {};
|
|
154
|
+
B: {};
|
|
155
|
+
D: {};
|
|
156
|
+
C: {};
|
|
157
|
+
M: {};
|
|
158
|
+
Defaults: {};
|
|
159
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
160
|
+
readonly inline: BooleanConstructor;
|
|
161
|
+
readonly labelWidth: import('vue').PropType<number | string>;
|
|
162
|
+
readonly labelAlign: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelAlign>;
|
|
163
|
+
readonly labelPlacement: {
|
|
164
|
+
readonly type: import('vue').PropType<import('naive-ui/es/form/src/interface').LabelPlacement>;
|
|
165
|
+
readonly default: "top";
|
|
166
|
+
};
|
|
167
|
+
readonly model: {
|
|
168
|
+
readonly type: import('vue').PropType<Record<string, any>>;
|
|
169
|
+
readonly default: () => void;
|
|
170
|
+
};
|
|
171
|
+
readonly rules: import('vue').PropType<import('naive-ui').FormRules>;
|
|
172
|
+
readonly disabled: BooleanConstructor;
|
|
173
|
+
readonly size: import('vue').PropType<import('naive-ui/es/form/src/interface').Size>;
|
|
174
|
+
readonly showRequireMark: {
|
|
175
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
176
|
+
readonly default: undefined;
|
|
177
|
+
};
|
|
178
|
+
readonly requireMarkPlacement: import('vue').PropType<"left" | "right" | "right-hanging">;
|
|
179
|
+
readonly showFeedback: {
|
|
180
|
+
readonly type: BooleanConstructor;
|
|
181
|
+
readonly default: true;
|
|
182
|
+
};
|
|
183
|
+
readonly onSubmit: {
|
|
184
|
+
readonly type: import('vue').PropType<(e: Event) => void>;
|
|
185
|
+
readonly default: (e: Event) => void;
|
|
186
|
+
};
|
|
187
|
+
readonly showLabel: {
|
|
188
|
+
readonly type: import('vue').PropType<boolean | undefined>;
|
|
189
|
+
readonly default: undefined;
|
|
190
|
+
};
|
|
191
|
+
readonly validateMessages: import('vue').PropType<Partial<import('naive-ui/es/form/src/interface').FormValidateMessages>>;
|
|
192
|
+
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
193
|
+
blankHeightSmall: string;
|
|
194
|
+
blankHeightMedium: string;
|
|
195
|
+
blankHeightLarge: string;
|
|
196
|
+
lineHeight: string;
|
|
197
|
+
labelTextColor: string;
|
|
198
|
+
asteriskColor: string;
|
|
199
|
+
feedbackTextColorError: string;
|
|
200
|
+
feedbackTextColorWarning: string;
|
|
201
|
+
feedbackTextColor: string;
|
|
202
|
+
feedbackPadding: string;
|
|
203
|
+
feedbackHeightSmall: string;
|
|
204
|
+
feedbackHeightMedium: string;
|
|
205
|
+
feedbackHeightLarge: string;
|
|
206
|
+
feedbackFontSizeSmall: string;
|
|
207
|
+
feedbackFontSizeMedium: string;
|
|
208
|
+
feedbackFontSizeLarge: string;
|
|
209
|
+
labelFontSizeLeftSmall: string;
|
|
210
|
+
labelFontSizeLeftMedium: string;
|
|
211
|
+
labelFontSizeLeftLarge: string;
|
|
212
|
+
labelFontSizeTopSmall: string;
|
|
213
|
+
labelFontSizeTopMedium: string;
|
|
214
|
+
labelFontSizeTopLarge: string;
|
|
215
|
+
labelHeightSmall: string;
|
|
216
|
+
labelHeightMedium: string;
|
|
217
|
+
labelHeightLarge: string;
|
|
218
|
+
labelPaddingVertical: string;
|
|
219
|
+
labelPaddingHorizontal: string;
|
|
220
|
+
labelTextAlignVertical: string;
|
|
221
|
+
labelTextAlignHorizontal: string;
|
|
222
|
+
labelFontWeight: string;
|
|
223
|
+
}, any>>;
|
|
224
|
+
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
225
|
+
blankHeightSmall: string;
|
|
226
|
+
blankHeightMedium: string;
|
|
227
|
+
blankHeightLarge: string;
|
|
228
|
+
lineHeight: string;
|
|
229
|
+
labelTextColor: string;
|
|
230
|
+
asteriskColor: string;
|
|
231
|
+
feedbackTextColorError: string;
|
|
232
|
+
feedbackTextColorWarning: string;
|
|
233
|
+
feedbackTextColor: string;
|
|
234
|
+
feedbackPadding: string;
|
|
235
|
+
feedbackHeightSmall: string;
|
|
236
|
+
feedbackHeightMedium: string;
|
|
237
|
+
feedbackHeightLarge: string;
|
|
238
|
+
feedbackFontSizeSmall: string;
|
|
239
|
+
feedbackFontSizeMedium: string;
|
|
240
|
+
feedbackFontSizeLarge: string;
|
|
241
|
+
labelFontSizeLeftSmall: string;
|
|
242
|
+
labelFontSizeLeftMedium: string;
|
|
243
|
+
labelFontSizeLeftLarge: string;
|
|
244
|
+
labelFontSizeTopSmall: string;
|
|
245
|
+
labelFontSizeTopMedium: string;
|
|
246
|
+
labelFontSizeTopLarge: string;
|
|
247
|
+
labelHeightSmall: string;
|
|
248
|
+
labelHeightMedium: string;
|
|
249
|
+
labelHeightLarge: string;
|
|
250
|
+
labelPaddingVertical: string;
|
|
251
|
+
labelPaddingHorizontal: string;
|
|
252
|
+
labelTextAlignVertical: string;
|
|
253
|
+
labelTextAlignHorizontal: string;
|
|
254
|
+
labelFontWeight: string;
|
|
255
|
+
}, any>>>;
|
|
256
|
+
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Form", {
|
|
257
|
+
blankHeightSmall: string;
|
|
258
|
+
blankHeightMedium: string;
|
|
259
|
+
blankHeightLarge: string;
|
|
260
|
+
lineHeight: string;
|
|
261
|
+
labelTextColor: string;
|
|
262
|
+
asteriskColor: string;
|
|
263
|
+
feedbackTextColorError: string;
|
|
264
|
+
feedbackTextColorWarning: string;
|
|
265
|
+
feedbackTextColor: string;
|
|
266
|
+
feedbackPadding: string;
|
|
267
|
+
feedbackHeightSmall: string;
|
|
268
|
+
feedbackHeightMedium: string;
|
|
269
|
+
feedbackHeightLarge: string;
|
|
270
|
+
feedbackFontSizeSmall: string;
|
|
271
|
+
feedbackFontSizeMedium: string;
|
|
272
|
+
feedbackFontSizeLarge: string;
|
|
273
|
+
labelFontSizeLeftSmall: string;
|
|
274
|
+
labelFontSizeLeftMedium: string;
|
|
275
|
+
labelFontSizeLeftLarge: string;
|
|
276
|
+
labelFontSizeTopSmall: string;
|
|
277
|
+
labelFontSizeTopMedium: string;
|
|
278
|
+
labelFontSizeTopLarge: string;
|
|
279
|
+
labelHeightSmall: string;
|
|
280
|
+
labelHeightMedium: string;
|
|
281
|
+
labelHeightLarge: string;
|
|
282
|
+
labelPaddingVertical: string;
|
|
283
|
+
labelPaddingHorizontal: string;
|
|
284
|
+
labelTextAlignVertical: string;
|
|
285
|
+
labelTextAlignHorizontal: string;
|
|
286
|
+
labelFontWeight: string;
|
|
287
|
+
}, any>>>;
|
|
288
|
+
}>> & Readonly<{}>, import('naive-ui').FormInst & {
|
|
289
|
+
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
290
|
+
}, {}, {}, {}, {
|
|
291
|
+
readonly disabled: boolean;
|
|
292
|
+
readonly onSubmit: (e: Event) => void;
|
|
293
|
+
readonly inline: boolean;
|
|
294
|
+
readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
|
|
295
|
+
readonly model: Record<string, any>;
|
|
296
|
+
readonly showRequireMark: boolean | undefined;
|
|
297
|
+
readonly showFeedback: boolean;
|
|
298
|
+
readonly showLabel: boolean | undefined;
|
|
299
|
+
}> | null;
|
|
300
|
+
}, HTMLDivElement>;
|
|
301
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RowData } from 'naive-ui/es/data-table/src/interface';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
data: RowData;
|
|
4
|
+
tableData: RowData[];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
7
|
+
showModal: (nameIndex?: number) => void;
|
|
8
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
initForm: (...args: any[]) => void;
|
|
10
|
+
confirm: (...args: any[]) => void;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
|
+
onInitForm?: ((...args: any[]) => any) | undefined;
|
|
13
|
+
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
14
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|