Skip to content

Commit

Permalink
Use semicolons to terminate fields in type StringType, see phetsims/c…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed May 7, 2022
1 parent 1371d6a commit aba9dcd
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions js/trigTourStrings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,24 @@ import trigTour from './trigTour.js';

type StringsType = {
'trig-tour': {
'title': string
},
'angle': string,
'cos': string,
'degrees': string,
'grid': string,
'labels': string,
'rads': string,
'radians': string,
'sin': string,
'specialAngles': string,
'tan': string,
'x': string,
'y': string,
'values': string,
'vs': string,
'valueUnitPattern': string,
'numberPiPattern': string
'title': string;
};
'angle': string;
'cos': string;
'degrees': string;
'grid': string;
'labels': string;
'rads': string;
'radians': string;
'sin': string;
'specialAngles': string;
'tan': string;
'x': string;
'y': string;
'values': string;
'vs': string;
'valueUnitPattern': string;
'numberPiPattern': string;
};

const trigTourStrings = getStringModule( 'TRIG_TOUR' ) as StringsType;
Expand Down

0 comments on commit aba9dcd

Please sign in to comment.