File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -293,9 +293,9 @@ export class CodeGenConfig {
293293 */
294294 EnumFieldDescription : ( description : any ) => {
295295 if ( description ) {
296- return ` /** ${ description } */`
296+ return ` /** ${ description } */` ;
297297 } else {
298- return '' ;
298+ return "" ;
299299 }
300300 } ,
301301 /**
@@ -309,11 +309,12 @@ export class CodeGenConfig {
309309 EnumFieldsWrapper : ( contents : Record < string , unknown > [ ] ) =>
310310 lodash
311311 . map ( contents , ( { key, value, description } ) => {
312-
313312 return [
314313 this . Ts . EnumFieldDescription ( description ) ,
315- ` ${ this . Ts . EnumField ( key , value ) } `
316- ] . filter ( Boolean ) . join ( '\n' )
314+ ` ${ this . Ts . EnumField ( key , value ) } ` ,
315+ ]
316+ . filter ( Boolean )
317+ . join ( "\n" ) ;
317318 } )
318319 . join ( ",\n" ) ,
319320 /**
You can’t perform that action at this time.
0 commit comments