mapcomplete/Logic/CustomLayers.ts

26 lines
501 B
TypeScript
Raw Normal View History

2020-07-31 04:58:58 +02:00
import {Layout} from "../Customizations/Layout";
import Translations from "../UI/i18n/Translations";
2020-07-31 16:17:16 +02:00
export class CustomLayout extends Layout {
2020-07-31 04:58:58 +02:00
public static NAME: string = "personal";
constructor() {
super(
2020-07-31 16:17:16 +02:00
CustomLayout.NAME,
2020-07-31 04:58:58 +02:00
["en"],
Translations.t.favourite.title,
[],
12,
0,
0,
Translations.t.favourite.description,
);
this.icon = "./assets/star.svg"
}
}