File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ export interface Chatter {
66}
77
88interface CreditsList {
9- followers : Chatter [ ] ;
10- subscribers : Chatter [ ] ;
11- moderators : Chatter [ ] ;
12- cheers : Chatter [ ] ;
13- chatters : Chatter [ ] ;
9+ Followers : Chatter [ ] ;
10+ Subscribers : Chatter [ ] ;
11+ Moderators : Chatter [ ] ;
12+ Cheers : Chatter [ ] ;
13+ Chatters : Chatter [ ] ;
1414}
1515
1616export enum CreditType {
@@ -71,11 +71,11 @@ export class Credits {
7171
7272 public getCreditsList ( ) : string {
7373 const list : CreditsList = {
74- followers : Array . from ( this . followers . values ( ) ) ,
75- subscribers : Array . from ( this . subscribers . values ( ) ) ,
76- moderators : Array . from ( this . moderators . values ( ) ) ,
77- cheers : Array . from ( this . cheers . values ( ) ) ,
78- chatters : Array . from ( this . chatters . values ( ) ) ,
74+ Moderators : Array . from ( this . moderators . values ( ) ) ,
75+ Subscribers : Array . from ( this . subscribers . values ( ) ) ,
76+ Cheers : Array . from ( this . cheers . values ( ) ) ,
77+ Followers : Array . from ( this . followers . values ( ) ) ,
78+ Chatters : Array . from ( this . chatters . values ( ) ) ,
7979 } ;
8080 return JSON . stringify ( list ) ;
8181 }
You can’t perform that action at this time.
0 commit comments