forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			304 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			304 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { TagRenderingOptions } from "../TagRendering";
 | |
| 
 | |
| export default class FixedName extends TagRenderingOptions {
 | |
|     constructor(category: string) {
 | |
|         super({
 | |
|             mappings: [
 | |
|                 {
 | |
|                     k: null, txt: category
 | |
|                 }
 | |
|             ]
 | |
|         })
 | |
|     }
 | |
| } |