9 lines
		
	
	
		
			188 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			188 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| // #docregion
 | |
| import { Injectable } from '@angular/core';
 | |
| 
 | |
| @Injectable()
 | |
| /** Dummy version of an authenticated user service */
 | |
| export class UserService {
 | |
|   userName = 'Sherlock Holmes';
 | |
| }
 |