UNPKG

astro-accelerator-utils

Version:
16 lines (15 loc) 363 B
export interface TaxonomyEntry { title: string; count: number; } export interface TaxonomyList { tags: TaxonomyEntry[]; topTags: TaxonomyEntry[]; categories: TaxonomyEntry[]; } export interface TaxonomyLinks { tag: string; category: string; getCategoryLink: (category: string) => string; getTagLink: (tag: string) => string; }