forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			No EOL
		
	
	
		
			501 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			No EOL
		
	
	
		
			501 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {Layout} from "../Customizations/Layout";
 | 
						|
import Translations from "../UI/i18n/Translations";
 | 
						|
 | 
						|
export class CustomLayout extends Layout {
 | 
						|
 | 
						|
    public static NAME: string = "personal";
 | 
						|
 | 
						|
    constructor() {
 | 
						|
        super(
 | 
						|
            CustomLayout.NAME,
 | 
						|
            ["en"],
 | 
						|
            Translations.t.favourite.title,
 | 
						|
            [],
 | 
						|
            12,
 | 
						|
            0,
 | 
						|
            0,
 | 
						|
            Translations.t.favourite.description,
 | 
						|
        );
 | 
						|
 | 
						|
        this.icon = "./assets/star.svg"
 | 
						|
    }
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
    
 |