@docx4j/jsonix 3.2.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/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "@docx4j/jsonix",
3
+ "version": "3.2.0",
4
+ "description": "Jsonix (JSON interfaces for XML) is a JavaScript library which allows converting between XML and JSON structures.",
5
+ "keywords": [
6
+ "json",
7
+ "xml",
8
+ "unmarshal",
9
+ "unmarshalling",
10
+ "marshal",
11
+ "marshalling",
12
+ "parse",
13
+ "parsing",
14
+ "serialize",
15
+ "serializing",
16
+ "javascript objects",
17
+ "dom",
18
+ "util",
19
+ "utility",
20
+ "jaxb",
21
+ "jsonix"
22
+ ],
23
+ "homepage": "https://github.com/plutext/jsonix",
24
+ "bugs": {
25
+ "url": "https://github.com/plutext/jsonix/issues"
26
+ },
27
+ "licenses": [
28
+ {
29
+ "type": "(Apache-2.0 AND BSD-2-Clause)",
30
+ "url": "https://github.com/plutext/jsonix/raw/master/LICENSE"
31
+ }
32
+ ],
33
+ "author": {
34
+ "name": "Alexey Valikov",
35
+ "url": "http://github.com/highsource"
36
+ },
37
+ "contributors": [
38
+ {
39
+ "name": "Conrad Pankoff",
40
+ "url": "https://github.com/deoxxa"
41
+ },
42
+ {
43
+ "name": "MITRE SAF (C)",
44
+ "url": "https://saf.mitre.org"
45
+ },
46
+ {
47
+ "name": "Plutext Pty Ltd (Jason Harrop)",
48
+ "url": "https://www.plutext.com"
49
+ }
50
+ ],
51
+ "main": "jsonix.js",
52
+ "module": "jsonix.mjs",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "https://github.com/plutext/jsonix.git"
56
+ },
57
+ "types": "./types/main.d.ts",
58
+ "exports": {
59
+ ".": {
60
+ "types": "./types/main.d.ts",
61
+ "import": "./jsonix.mjs",
62
+ "require": "./jsonix.js"
63
+ },
64
+ "./jsonix.js": "./jsonix.js",
65
+ "./package.json": "./package.json"
66
+ },
67
+ "scripts": {
68
+ "test": "nodeunit tests/tests.js",
69
+ "typecheck": "tsc -p tests/typescript/tsconfig.json && tsc -p tests/typescript/tsconfig.node16.json",
70
+ "test:esm": "node tests/typescript/esm-smoke.mjs"
71
+ },
72
+ "dependencies": {
73
+ "@xmldom/xmldom": "^0.9.7",
74
+ "amdefine": "^1.0.1",
75
+ "xmlhttprequest": "^1.8.0"
76
+ },
77
+ "devDependencies": {
78
+ "node-static": "^0.7.11",
79
+ "nodeunit": "^0.11.3",
80
+ "typescript": "~5.6.3"
81
+ }
82
+ }
package/pom.xml ADDED
@@ -0,0 +1,135 @@
1
+ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2
+ <modelVersion>4.0.0</modelVersion>
3
+ <artifactId>jsonix-nodejs-scripts</artifactId>
4
+ <packaging>pom</packaging>
5
+ <name>Jsonix Node.js Scripts</name>
6
+ <parent>
7
+ <groupId>org.hisrc.jsonix</groupId>
8
+ <artifactId>jsonix-nodejs</artifactId>
9
+ <version>3.0.1-SNAPSHOT</version>
10
+ </parent>
11
+ <dependencies>
12
+ <dependency>
13
+ <groupId>${project.groupId}</groupId>
14
+ <artifactId>jsonix-schema-compiler-full</artifactId>
15
+ </dependency>
16
+ </dependencies>
17
+ <build>
18
+ <plugins>
19
+ <plugin>
20
+ <artifactId>maven-resources-plugin</artifactId>
21
+ <executions>
22
+ <execution>
23
+ <id>copy-package.json</id>
24
+ <phase>initialize</phase>
25
+ <goals>
26
+ <goal>copy-resources</goal>
27
+ </goals>
28
+ <configuration>
29
+ <outputDirectory>${basedir}</outputDirectory>
30
+ <resources>
31
+ <resource>
32
+ <directory>src/main/npm</directory>
33
+ <filtering>true</filtering>
34
+ </resource>
35
+ </resources>
36
+ </configuration>
37
+ </execution>
38
+ </executions>
39
+ </plugin>
40
+ <plugin>
41
+ <artifactId>maven-dependency-plugin</artifactId>
42
+ <executions>
43
+ <execution>
44
+ <id>unpack</id>
45
+ <phase>generate-sources</phase>
46
+ <goals>
47
+ <goal>copy</goal>
48
+ </goals>
49
+ <configuration>
50
+ <artifactItems>
51
+ <artifactItem>
52
+ <groupId>${project.groupId}</groupId>
53
+ <artifactId>jsonix-scripts</artifactId>
54
+ <version>${project.version}</version>
55
+ <type>js</type>
56
+ <classifier>all</classifier>
57
+ <overWrite>true</overWrite>
58
+ <outputDirectory>${basedir}</outputDirectory>
59
+ <destFileName>jsonix.js</destFileName>
60
+ </artifactItem>
61
+ <artifactItem>
62
+ <groupId>${project.groupId}</groupId>
63
+ <artifactId>jsonix-schema-compiler-full</artifactId>
64
+ <version>${jsonix-schema-compiler.version}</version>
65
+ <overWrite>true</overWrite>
66
+ <outputDirectory>${basedir}/lib</outputDirectory>
67
+ <destFileName>jsonix-schema-compiler-full.jar</destFileName>
68
+ </artifactItem>
69
+ </artifactItems>
70
+ </configuration>
71
+ </execution>
72
+ </executions>
73
+ </plugin>
74
+ <plugin>
75
+ <groupId>org.codehaus.mojo</groupId>
76
+ <artifactId>exec-maven-plugin</artifactId>
77
+ <executions>
78
+ <execution>
79
+ <id>npm-install</id>
80
+ <phase>compile</phase>
81
+ <goals>
82
+ <goal>exec</goal>
83
+ </goals>
84
+ <configuration>
85
+ <executable>npm</executable>
86
+ <arguments>
87
+ <argument>install</argument>
88
+ </arguments>
89
+ </configuration>
90
+ </execution>
91
+ <execution>
92
+ <id>npm-test</id>
93
+ <phase>test</phase>
94
+ <goals>
95
+ <goal>exec</goal>
96
+ </goals>
97
+ <configuration>
98
+ <executable>npm</executable>
99
+ <arguments>
100
+ <argument>test</argument>
101
+ </arguments>
102
+ </configuration>
103
+ </execution>
104
+ <execution>
105
+ <id>npm-pack</id>
106
+ <phase>package</phase>
107
+ <goals>
108
+ <goal>exec</goal>
109
+ </goals>
110
+ <configuration>
111
+ <executable>npm</executable>
112
+ <arguments>
113
+ <argument>pack</argument>
114
+ </arguments>
115
+ </configuration>
116
+ </execution>
117
+ <!--execution>
118
+ <id>publish</id>
119
+ <phase>deploy</phase>
120
+ <goals>
121
+ <goal>exec</goal>
122
+ </goals>
123
+ <configuration>
124
+ <executable>npm</executable>
125
+ <arguments>
126
+ <argument>publish</argument>
127
+ <argument>.</argument>
128
+ </arguments>
129
+ </configuration>
130
+ </execution-->
131
+ </executions>
132
+ </plugin>
133
+ </plugins>
134
+ </build>
135
+ </project>
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@docx4j/jsonix",
3
+ "version": "${project.version}",
4
+ "description": "Jsonix (JSON interfaces for XML) is a JavaScript library which allows converting between XML and JSON structures.",
5
+ "keywords": [
6
+ "json",
7
+ "xml",
8
+ "unmarshal",
9
+ "unmarshalling",
10
+ "marshal",
11
+ "marshalling",
12
+ "parse",
13
+ "parsing",
14
+ "serialize",
15
+ "serializing",
16
+ "javascript objects",
17
+ "dom",
18
+ "util",
19
+ "utility",
20
+ "jaxb",
21
+ "jsonix"
22
+ ],
23
+ "homepage": "https://github.com/plutext/jsonix",
24
+ "bugs": {
25
+ "url": "https://github.com/plutext/jsonix/issues"
26
+ },
27
+ "licenses": [
28
+ {
29
+ "type": "BSD-3-Clause",
30
+ "url": "https://github.com/plutext/jsonix/raw/master/LICENSE"
31
+ }
32
+ ],
33
+ "author": {
34
+ "name": "Alexey Valikov",
35
+ "url": "http://github.com/highsource"
36
+ },
37
+ "contributors": [
38
+ {
39
+ "name": "Conrad Pankoff",
40
+ "url": "https://github.com/deoxxa"
41
+ },
42
+ {
43
+ "name": "Plutext Pty Ltd (Jason Harrop)",
44
+ "url": "https://www.plutext.com"
45
+ }
46
+ ],
47
+ "main": "jsonix.js",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "https://github.com/plutext/jsonix.git"
51
+ },
52
+ "scripts": {
53
+ "test": "nodeunit tests/tests.js"
54
+ },
55
+ "dependencies": {
56
+ "amdefine": "0.x.x",
57
+ "xmldom": ">=0.1.21",
58
+ "xmlhttprequest": "1.x.x"
59
+ },
60
+ "devDependencies": {
61
+ "nodeunit": "0.x.x",
62
+ "node-static": "0.x.x"
63
+ }
64
+ }
@@ -0,0 +1,356 @@
1
+ /**
2
+ * Type declarations for the @docx4j/jsonix runtime.
3
+ *
4
+ * The data shapes below (TypedNamedValue, XML.QName, XML.Calendar, XML.Duration and the
5
+ * TYPE_NAME discriminant) are a contract with the declaration files that
6
+ * jsonix-schema-compiler emits with -generateTypeScript: generated files carry their own
7
+ * structurally identical copies, so anything the runtime returns can be typed with a
8
+ * generated element type, and anything typed with a generated type can be marshalled.
9
+ * tests/typescript guards that contract. Change them together or not at all.
10
+ */
11
+
12
+ export namespace Jsonix {
13
+ export namespace XML {
14
+ /**
15
+ * A qualified name (Jsonix.XML.QName). Runtime instances always carry every field;
16
+ * marshal input may give only namespaceURI and localPart.
17
+ */
18
+ export interface QName {
19
+ namespaceURI: string;
20
+ localPart: string;
21
+ prefix?: string;
22
+ /** "{namespaceURI}localPart" */
23
+ key?: string;
24
+ /** "prefix:localPart" */
25
+ string?: string;
26
+ }
27
+
28
+ /**
29
+ * The representation of xs:date, xs:time, xs:dateTime and the xs:g* types
30
+ * (Jsonix.XML.Calendar). Unset fields are NaN. Jsonix never returns a JavaScript Date.
31
+ */
32
+ export interface Calendar {
33
+ year?: number;
34
+ month?: number;
35
+ day?: number;
36
+ hour?: number;
37
+ minute?: number;
38
+ second?: number;
39
+ fractionalSecond?: number;
40
+ timezone?: number;
41
+ }
42
+
43
+ /** The representation of xs:duration values. sign is 1 or -1. */
44
+ export interface Duration {
45
+ sign?: number;
46
+ years?: number;
47
+ months?: number;
48
+ days?: number;
49
+ hours?: number;
50
+ minutes?: number;
51
+ seconds?: number;
52
+ }
53
+ }
54
+
55
+ /**
56
+ * An element: what an unmarshaller returns, what a marshaller accepts, and the value of an
57
+ * elementRef property. Generated declarations alias this per global element, for example
58
+ * `type PurchaseOrderElement = TypedNamedValue<PurchaseOrderType>`.
59
+ */
60
+ export interface TypedNamedValue<T = unknown> {
61
+ name: XML.QName;
62
+ value: T;
63
+ }
64
+
65
+ /**
66
+ * A mapping module as consumed by `new Jsonix.Context([...])`: a plain object generated by
67
+ * jsonix-schema-compiler or written by hand. Generated declarations type theirs as
68
+ * `JsonixMapping<RootElement>`, whose phantom `__rootElement` carries the union of the module's
69
+ * global element types; `Context` reads it to infer what its unmarshallers return.
70
+ */
71
+ export interface Mapping<R = unknown> {
72
+ readonly __rootElement?: R;
73
+ readonly [key: string]: unknown;
74
+ }
75
+
76
+ /**
77
+ * The union of the root element types of the given mapping(s), or the untyped element when a
78
+ * mapping does not declare one (hand-written mappings, generated ones compiled without
79
+ * -generateTypeScript).
80
+ */
81
+ export type RootElementOf<M> = M extends { readonly __rootElement?: infer R }
82
+ ? NonNullable<R> extends TypedNamedValue
83
+ ? NonNullable<R>
84
+ : TypedNamedValue
85
+ : TypedNamedValue;
86
+
87
+ export interface ContextOptions {
88
+ /** Maps namespace URIs to the prefixes used when marshalling. */
89
+ namespacePrefixes?: { [namespaceURI: string]: string };
90
+ /** Whether xsi:type attributes are honoured when unmarshalling and written when marshalling. Defaults to true. */
91
+ supportXsiType?: boolean;
92
+ /** The mapping style, by name or as a custom style object. Defaults to 'standard'. */
93
+ mappingStyle?: 'standard' | 'simplified' | object;
94
+ /**
95
+ * When true, every typed object the unmarshaller creates (objects with TYPE_NAME, or
96
+ * instanceFactory instances) gets a non-enumerable PARENT property pointing at the nearest
97
+ * enclosing typed object; root objects have none. Element wrappers, maps, calendars, QNames
98
+ * and DOM nodes never get one. Defaults to false. Generated declarations type PARENT as the
99
+ * union of the types that can contain each type.
100
+ */
101
+ parentPointers?: boolean;
102
+ }
103
+
104
+ /** Convenience for hand-written types: an object that may carry a parent pointer. Generated declarations inline the union. */
105
+ export interface Parented<P = unknown> {
106
+ readonly PARENT?: P;
107
+ }
108
+
109
+ export namespace Util {
110
+ /**
111
+ * Copies a value structurally: primitives are shared; QNames, calendars and DOM nodes are
112
+ * cloned; arrays and plain objects (including element wrappers, durations, maps and typed
113
+ * objects, keeping TYPE_NAME) are copied recursively, own enumerable properties only. An
114
+ * object referenced twice is copied once. PARENT pointers inside the copy are re-linked to
115
+ * the copied parents; the copy's own PARENT is `parent` if given, otherwise unset.
116
+ */
117
+ function deepCopy<T>(value: T, parent?: unknown): T;
118
+ /** Defines a non-enumerable, writable PARENT on `value` (no-op for non-objects). */
119
+ function setParent(value: object, parent: unknown): void;
120
+ }
121
+
122
+ /**
123
+ * Options for unmarshalURL (passed to the XMLHttpRequest transport) and unmarshalFile
124
+ * (passed to fs.readFile).
125
+ */
126
+ export type UnmarshalOptions = object;
127
+
128
+ /**
129
+ * R is the union of root element types inferred from the context's mappings; each method can
130
+ * narrow it with an explicit type argument, e.g. `unmarshalString<PurchaseOrderElement>(xml)`.
131
+ */
132
+ export interface Unmarshaller<R extends TypedNamedValue = TypedNamedValue> {
133
+ /** Parses an XML string. */
134
+ unmarshalString<E extends TypedNamedValue = R>(text: string): E;
135
+ /** Unmarshals a DOM document (or element). */
136
+ unmarshalDocument<E extends TypedNamedValue = R>(doc: Node, scope?: unknown): E;
137
+ /** Loads the URL with XMLHttpRequest and unmarshals the response. */
138
+ unmarshalURL<E extends TypedNamedValue = R>(
139
+ url: string,
140
+ callback: (unmarshalled: E) => void,
141
+ options?: UnmarshalOptions
142
+ ): void;
143
+ /** Node.js only: reads the file and unmarshals it. Throws in environments without a file system. */
144
+ unmarshalFile<E extends TypedNamedValue = R>(
145
+ fileName: string,
146
+ callback: (unmarshalled: E) => void,
147
+ options?: UnmarshalOptions
148
+ ): void;
149
+ }
150
+
151
+ export interface Marshaller {
152
+ /** Serialises an element to an XML string. */
153
+ marshalString<E extends TypedNamedValue>(element: E): string;
154
+ /** Serialises an element to a DOM document. */
155
+ marshalDocument<E extends TypedNamedValue>(element: E): Document;
156
+ }
157
+
158
+ /**
159
+ * M is inferred from the mappings passed to the constructor; `createUnmarshaller()` then returns
160
+ * elements typed as the union of those mappings' root elements. The constraint is `object`, not
161
+ * `Mapping`, so hand-written mappings typed with an interface (no index signature) are accepted.
162
+ */
163
+ export class Context<M extends object = Mapping> {
164
+ /**
165
+ * @param mappings Mapping modules (generated or hand-written). Cross-module references are
166
+ * resolved by name, in any order.
167
+ * @param options Optional configuration.
168
+ */
169
+ constructor(mappings: M[], options?: ContextOptions);
170
+
171
+ createUnmarshaller(): Unmarshaller<RootElementOf<M>>;
172
+ createMarshaller(): Marshaller;
173
+
174
+ getTypeInfoByName(name: string): TypeInfo;
175
+ getTypeInfoByTypeName(typeName: string): TypeInfo;
176
+ getTypeInfoByTypeNameKey(typeNameKey: string): TypeInfo;
177
+ getElementInfo(name: string, scope: string): any;
178
+ getSubstitutionMembers(name: string): any;
179
+ getNamespaceURI(prefix: string): any;
180
+ getPrefix(namespaceURI: string, defaultPrefix: string): any;
181
+
182
+ builtinTypeInfos: {
183
+ Jsonix: {
184
+ Schema: {
185
+ XSD: {
186
+ AnyType: { INSTANCE: {} };
187
+ AnySimpleType: { INSTANCE: {} };
188
+ AnyURI: { INSTANCE: {} };
189
+ Base64Binary: { INSTANCE: {} };
190
+ Boolean: { INSTANCE: {} };
191
+ Byte: { INSTANCE: {} };
192
+ Calendar: { INSTANCE: {} };
193
+ DateAsDate: { INSTANCE: {} };
194
+ Date: { INSTANCE: {} };
195
+ DateTimeAsDate: { INSTANCE: {} };
196
+ DateTime: { INSTANCE: {} };
197
+ Decimal: { INSTANCE: {} };
198
+ Double: { INSTANCE: {} };
199
+ Duration: { INSTANCE: {} };
200
+ Float: { INSTANCE: {} };
201
+ GDay: { INSTANCE: {} };
202
+ GMonth: { INSTANCE: {} };
203
+ GMonthDay: { INSTANCE: {} };
204
+ GYear: { INSTANCE: {} };
205
+ GYearMonth: { INSTANCE: {} };
206
+ HexBinary: { INSTANCE: {} };
207
+ ID: { INSTANCE: {} };
208
+ IDREF: { INSTANCE: {} };
209
+ IDREFS: { INSTANCE: {} };
210
+ Int: { INSTANCE: {} };
211
+ Integer: { INSTANCE: {} };
212
+ Language: { INSTANCE: {} };
213
+ Long: { INSTANCE: {} };
214
+ Name: { INSTANCE: {} };
215
+ NCName: { INSTANCE: {} };
216
+ NegativeInteger: { INSTANCE: {} };
217
+ NMToken: { INSTANCE: {} };
218
+ NMTokens: { INSTANCE: {} };
219
+ NonNegativeInteger: { INSTANCE: {} };
220
+ NonPositiveInteger: { INSTANCE: {} };
221
+ NormalizedString: { INSTANCE: {} };
222
+ Number: { INSTANCE: {} };
223
+ PositiveInteger: { INSTANCE: {} };
224
+ QName: { INSTANCE: {} };
225
+ Short: { INSTANCE: {} };
226
+ String: { INSTANCE: {} };
227
+ Strings: { INSTANCE: {} };
228
+ TimeAsDate: { INSTANCE: {} };
229
+ Time: { INSTANCE: {} };
230
+ Token: { INSTANCE: {} };
231
+ UnsignedByte: { INSTANCE: {} };
232
+ UnsignedInt: { INSTANCE: {} };
233
+ UnsignedLong: { INSTANCE: {} };
234
+ UnsignedShort: { INSTANCE: {} };
235
+ };
236
+ };
237
+ };
238
+ }[];
239
+
240
+ // private
241
+ elementInfos: ClassInfo[];
242
+ }
243
+
244
+ // Mapping internals (as built by Context). These describe the mapping model, not the data.
245
+
246
+ export interface Styled {
247
+ CLASS_NAME: string;
248
+ mappingStyle: Object;
249
+ }
250
+
251
+ export interface TypeInfo {
252
+ name: string;
253
+ baseTypeInfo: TypeInfo;
254
+ }
255
+
256
+ export interface EnumLeafInfo extends TypeInfo {
257
+ name: string;
258
+ baseTypeInfo: TypeInfo;
259
+ entries: { [name: string]: string };
260
+ keys: { [index: number]: string };
261
+ values: { [index: number]: string };
262
+ built: boolean;
263
+ }
264
+
265
+ export interface PropertyInfo {
266
+ CLASS_NAME: string;
267
+ name: string;
268
+ collection: boolean;
269
+ targetNamespace: string;
270
+ defaultElementNamespaceURI: string;
271
+ defaultAttributeNamespaceURI: string;
272
+ built: boolean;
273
+ }
274
+
275
+ export interface AbstractElementPropertyInfo extends PropertyInfo {
276
+ wrapperElement: XML.QName;
277
+ allowDom: boolean;
278
+ allowTypedObject: boolean;
279
+ mixed: boolean;
280
+ }
281
+
282
+ export interface ElementPropertyInfo extends AbstractElementPropertyInfo {
283
+ typeInfo: TypeInfo | string;
284
+ elementName: XML.QName;
285
+ }
286
+
287
+ export interface ClassInfo extends TypeInfo, Styled {
288
+ CLASS_NAME: string;
289
+ localName: string;
290
+ typeName: XML.QName;
291
+ instanceFactory: {};
292
+ properties: { [index: number]: PropertyInfo };
293
+ propertiesMap: { [name: string]: PropertyInfo };
294
+ structure: {
295
+ elements: { [fqn: string]: PropertyInfo };
296
+ attributes: {};
297
+ anyAttribute: {};
298
+ value: {};
299
+ any: {};
300
+ };
301
+ targetNamespace: string;
302
+ defaultElementNamespaceURI: string;
303
+ defaultAttributeNamespaceURI: string;
304
+ built: boolean;
305
+ propertyInfoCreators: {
306
+ aa: { aa: any };
307
+ anyAttribute: { aa: any };
308
+ ae: { ae: any };
309
+ anyElement: { ae: any };
310
+ a: { a: any };
311
+ attribute: { a: any };
312
+ em: { em: any };
313
+ elementMap: { em: any };
314
+ e: { e: any };
315
+ element: { e: any };
316
+ es: { es: any };
317
+ elements: { es: any };
318
+ er: { er: any };
319
+ elementRef: { er: any };
320
+ ers: { ers: any };
321
+ elementRefs: { ers: any };
322
+ v: { v: any };
323
+ value: { v: any };
324
+ };
325
+ }
326
+ }
327
+
328
+ /**
329
+ * Backwards compatibility: versions up to 3.0.11 declared these as global (ambient) interfaces.
330
+ * Prefer the Jsonix.* names.
331
+ * @deprecated
332
+ */
333
+ declare global {
334
+ /** @deprecated use Jsonix.Unmarshaller */
335
+ interface Unmarshaller extends Jsonix.Unmarshaller {}
336
+ /** @deprecated use Jsonix.Marshaller */
337
+ interface Marshaller extends Jsonix.Marshaller {}
338
+ /** @deprecated use Jsonix.XML.QName */
339
+ interface QName extends Jsonix.XML.QName {
340
+ CLASS_NAME: string;
341
+ }
342
+ /** @deprecated use Jsonix.Styled */
343
+ interface Styled extends Jsonix.Styled {}
344
+ /** @deprecated use Jsonix.TypeInfo */
345
+ interface TypeInfo extends Jsonix.TypeInfo {}
346
+ /** @deprecated use Jsonix.EnumLeafInfo */
347
+ interface EnumLeafInfo extends Jsonix.EnumLeafInfo {}
348
+ /** @deprecated use Jsonix.PropertyInfo */
349
+ interface PropertyInfo extends Jsonix.PropertyInfo {}
350
+ /** @deprecated use Jsonix.AbstractElementPropertyInfo */
351
+ interface AbstractElementPropertyInfo extends Jsonix.AbstractElementPropertyInfo {}
352
+ /** @deprecated use Jsonix.ElementPropertyInfo */
353
+ interface ElementPropertyInfo extends Jsonix.ElementPropertyInfo {}
354
+ /** @deprecated use Jsonix.ClassInfo */
355
+ interface ClassInfo extends Jsonix.ClassInfo {}
356
+ }