import type CalendarLegend from "./CalendarLegend.js"; import CalendarLegendItem from "./CalendarLegendItem.js"; export default function CalendarLegendTemplate(this: CalendarLegend) { return (
{this.defaultItemsMapping.filter(item => !item.hide).map(item => )} {this.legendItems.map(item => )}
); }