2021-07-08 13:56:37 +07:00

11 lines
217 B
TypeScript

import { IContentDocument } from '@nuxt/content/types/content'
export interface INavLink {
category: string,
contentDocuments: IContentDocument[]
}
export interface ILink {
[key: string]: IContentDocument[]
}