forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			420 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			420 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Translation, TypedTranslation } from "../UI/i18n/Translation"
 | |
| import { Tag } from "../Logic/Tags/Tag"
 | |
| import { TagsFilter } from "../Logic/Tags/TagsFilter"
 | |
| 
 | |
| export interface GlobalFilter {
 | |
|     osmTags: TagsFilter
 | |
|     state: number | string | undefined
 | |
|     id: string
 | |
|     onNewPoint: {
 | |
|         safetyCheck: Translation
 | |
|         confirmAddNew: TypedTranslation<{ preset: Translation }>
 | |
|         tags: Tag[]
 | |
|     }
 | |
| }
 |