mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-07 05:44:35 +02:00
8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
import { CustomTaxonomy } from '.';
|
|
|
|
export interface TaxonomyData {
|
|
tags: string[];
|
|
categories: string[];
|
|
customTaxonomy: CustomTaxonomy[];
|
|
}
|