astro-accelerator-utils
Version:
Astro utilities for Astro Accelerator.
16 lines (15 loc) • 363 B
TypeScript
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;
}