File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- type X2jOptions = {
1
+ export type X2jOptions = {
2
2
/**
3
3
* Preserve the order of tags in resulting JS object
4
4
*
@@ -218,14 +218,14 @@ type X2jOptions = {
218
218
captureMetaData ?: boolean ;
219
219
} ;
220
220
221
- type strnumOptions = {
221
+ export type strnumOptions = {
222
222
hex : boolean ;
223
223
leadingZeros : boolean ,
224
224
skipLike ?: RegExp ,
225
225
eNotation ?: boolean
226
226
}
227
227
228
- type validationOptions = {
228
+ export type validationOptions = {
229
229
/**
230
230
* Whether to allow attributes without value
231
231
*
@@ -241,7 +241,7 @@ type validationOptions = {
241
241
unpairedTags ?: string [ ] ;
242
242
} ;
243
243
244
- type XmlBuilderOptions = {
244
+ export type XmlBuilderOptions = {
245
245
/**
246
246
* Give a prefix to the attribute name in the resulting JS object
247
247
*
@@ -395,7 +395,7 @@ type XmlBuilderOptions = {
395
395
396
396
type ESchema = string | object | Array < string | object > ;
397
397
398
- type ValidationError = {
398
+ export type ValidationError = {
399
399
err : {
400
400
code : string ;
401
401
msg : string ,
You can’t perform that action at this time.
0 commit comments