8 lines
		
	
	
		
			120 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			120 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| export class Hero {
 | |
|   active: boolean;
 | |
| 
 | |
|   constructor(public name: string,
 | |
|               public team: string[]) {
 | |
|   }
 | |
| }
 |