Skip to content

Commit 0bd5ff9

Browse files
committed
minor , -> ; in the d.ts
1 parent 068bc5a commit 0bd5ff9

File tree

1 file changed

+66
-66
lines changed

1 file changed

+66
-66
lines changed

typescript/src/main/typescript/Jsonix.d.ts

Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -114,55 +114,55 @@ declare module Jsonix {
114114
Jsonix: {
115115
Schema: {
116116
XSD: {
117-
AnyType: { INSTANCE: {} },
118-
AnySimpleType: { INSTANCE: {} },
119-
AnyURI: { INSTANCE: {} },
120-
Base64Binary: { INSTANCE: {} },
121-
Boolean: { INSTANCE: {} },
122-
Byte: { INSTANCE: {} },
123-
Calendar: { INSTANCE: {} },
124-
DateAsDate: { INSTANCE: {} },
125-
Date: { INSTANCE: {} },
126-
DateTimeAsDate: { INSTANCE: {} },
127-
DateTime: { INSTANCE: {} },
128-
Decimal: { INSTANCE: {} },
129-
Double: { INSTANCE: {} },
130-
Duration: { INSTANCE: {} },
131-
Float: { INSTANCE: {} },
132-
GDay: { INSTANCE: {} },
133-
GMonth: { INSTANCE: {} },
134-
GMonthDay: { INSTANCE: {} },
135-
GYear: { INSTANCE: {} },
136-
GYearMonth: { INSTANCE: {} },
137-
HexBinary: { INSTANCE: {} },
138-
ID: { INSTANCE: {} },
139-
IDREF: { INSTANCE: {} },
140-
IDREFS: { INSTANCE: {} },
141-
Int: { INSTANCE: {} },
142-
Integer: { INSTANCE: {} },
143-
Language: { INSTANCE: {} },
144-
Long: { INSTANCE: {} },
145-
Name: { INSTANCE: {} },
146-
NCName: { INSTANCE: {} },
147-
NegativeInteger: { INSTANCE: {} },
148-
NMToken: { INSTANCE: {} },
149-
NMTokens: { INSTANCE: {} },
150-
NonNegativeInteger: { INSTANCE: {} },
151-
NonPositiveInteger: { INSTANCE: {} },
152-
NormalizedString: { INSTANCE: {} },
153-
Number: { INSTANCE: {} },
154-
PositiveInteger: { INSTANCE: {} },
155-
QName: { INSTANCE: {} },
156-
Short: { INSTANCE: {} },
157-
String: { INSTANCE: {} },
158-
Strings: { INSTANCE: {} },
159-
TimeAsDate: { INSTANCE: {} },
160-
Time: { INSTANCE: {} },
161-
Token: { INSTANCE: {} },
162-
UnsignedByte: { INSTANCE: {} },
163-
UnsignedInt: { INSTANCE: {} },
164-
UnsignedLong: { INSTANCE: {} },
165-
UnsignedShort: { INSTANCE: {} },
117+
AnyType: { INSTANCE: {} };
118+
AnySimpleType: { INSTANCE: {} };
119+
AnyURI: { INSTANCE: {} };
120+
Base64Binary: { INSTANCE: {} };
121+
Boolean: { INSTANCE: {} };
122+
Byte: { INSTANCE: {} };
123+
Calendar: { INSTANCE: {} };
124+
DateAsDate: { INSTANCE: {} };
125+
Date: { INSTANCE: {} };
126+
DateTimeAsDate: { INSTANCE: {} };
127+
DateTime: { INSTANCE: {} };
128+
Decimal: { INSTANCE: {} };
129+
Double: { INSTANCE: {} };
130+
Duration: { INSTANCE: {} };
131+
Float: { INSTANCE: {} };
132+
GDay: { INSTANCE: {} };
133+
GMonth: { INSTANCE: {} };
134+
GMonthDay: { INSTANCE: {} };
135+
GYear: { INSTANCE: {} };
136+
GYearMonth: { INSTANCE: {} };
137+
HexBinary: { INSTANCE: {} };
138+
ID: { INSTANCE: {} };
139+
IDREF: { INSTANCE: {} };
140+
IDREFS: { INSTANCE: {} };
141+
Int: { INSTANCE: {} };
142+
Integer: { INSTANCE: {} };
143+
Language: { INSTANCE: {} };
144+
Long: { INSTANCE: {} };
145+
Name: { INSTANCE: {} };
146+
NCName: { INSTANCE: {} };
147+
NegativeInteger: { INSTANCE: {} };
148+
NMToken: { INSTANCE: {} };
149+
NMTokens: { INSTANCE: {} };
150+
NonNegativeInteger: { INSTANCE: {} };
151+
NonPositiveInteger: { INSTANCE: {} };
152+
NormalizedString: { INSTANCE: {} };
153+
Number: { INSTANCE: {} };
154+
PositiveInteger: { INSTANCE: {} };
155+
QName: { INSTANCE: {} };
156+
Short: { INSTANCE: {} };
157+
String: { INSTANCE: {} };
158+
Strings: { INSTANCE: {} };
159+
TimeAsDate: { INSTANCE: {} };
160+
Time: { INSTANCE: {} };
161+
Token: { INSTANCE: {} };
162+
UnsignedByte: { INSTANCE: {} };
163+
UnsignedInt: { INSTANCE: {} };
164+
UnsignedLong: { INSTANCE: {} };
165+
UnsignedShort: { INSTANCE: {} };
166166
}
167167
}
168168
}
@@ -182,7 +182,7 @@ declare module Jsonix {
182182
* @interface Styled
183183
*/
184184
interface Styled {
185-
//{ CLASS_NAME: string },
185+
//{ CLASS_NAME: string };
186186
mappingStyle: Object;
187187
}
188188

@@ -207,8 +207,8 @@ interface QName {
207207
* @interface TypeInfo
208208
*/
209209
interface TypeInfo {
210-
name: string,
211-
baseTypeInfo: TypeInfo,
210+
name: string;
211+
baseTypeInfo: TypeInfo;
212212
}
213213

214214
/**
@@ -218,12 +218,12 @@ interface TypeInfo {
218218
* @extends {TypeInfo}
219219
*/
220220
interface EnumLeafInfo extends TypeInfo {
221-
name: string,
222-
baseTypeInfo: TypeInfo,
223-
entries: { [name: string]: string },
224-
keys: { [index: number]: string },
225-
values: { [index: number]: string },
226-
built: boolean
221+
name: string;
222+
baseTypeInfo: TypeInfo;
223+
entries: { [name: string]: string };
224+
keys: { [index: number]: string };
225+
values: { [index: number]: string };
226+
built: boolean;
227227

228228
}
229229

@@ -283,20 +283,20 @@ interface ClassInfo extends TypeInfo, Styled {
283283
propertiesMap: { [name: string]: PropertyInfo };
284284
//is inner class
285285
structure: {
286-
elements: { [fqn: string]: PropertyInfo },
287-
attributes: {},
288-
anyAttribute: {},
289-
value: {},
286+
elements: { [fqn: string]: PropertyInfo };
287+
attributes: {};
288+
anyAttribute: {};
289+
value: {};
290290
any: {}
291291
};
292-
targetNamespace: string,
293-
defaultElementNamespaceURI: string,
292+
targetNamespace: string;
293+
defaultElementNamespaceURI: string;
294294
defaultAttributeNamespaceURI: string
295-
built: boolean,
295+
built: boolean;
296296
//TODO: confirm this syntax
297297
propertyInfoCreators: {
298298
aa: { aa };
299-
anyAttribute: { aa },
299+
anyAttribute: { aa };
300300
ae: { ae };
301301
anyElement: { ae };
302302
a: { a };

0 commit comments

Comments
 (0)