File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ export class TypescriptConversion {
258258 this . getter . push ( {
259259 fieldname : field ,
260260 type : type . type ,
261- returnType : ` super.relation("${ field } ");` ,
261+ returnType : `super.relation("${ field } ");` ,
262262 } ) ;
263263 } else {
264264 this . attributes . push ( {
@@ -269,13 +269,13 @@ export class TypescriptConversion {
269269 this . getter . push ( {
270270 fieldname : field ,
271271 type : `${ type . type } ${ nullable ? " | undefined" : "" } ` ,
272- returnType : ` super.get("${ field } ");` ,
272+ returnType : `super.get("${ field } ");` ,
273273 } ) ;
274274
275275 this . setter . push ( {
276276 fieldname : field ,
277277 type : `${ type . type } ${ nullable ? " | undefined" : "" } ` ,
278- action : ` super.set("${ field } ", value);` ,
278+ action : `super.set("${ field } ", value);` ,
279279 } ) ;
280280 }
281281 }
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ export class {{getClassnameWithoutPrefix prefix className}} extends Parse.Object
4848{{ #each ../setters }}
4949{{ #ifEquals fieldname ../fieldname}}
5050 set {{ fieldname }} (value: {{{ type }}} ) {
51- {{{ action }}}
51+ {{{ action }}}
5252 }
5353{{ /ifEquals }}
5454{{ /each }}
You can’t perform that action at this time.
0 commit comments