11 lines
217 B
TypeScript
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[]
|
|
}
|