22 lines
578 B
TypeScript
22 lines
578 B
TypeScript
import type { PageCollectionItemBase, DataCollectionItemBase } from '@nuxt/content'
|
|
|
|
declare module '@nuxt/content' {
|
|
/* eslint-disable */
|
|
/**
|
|
* This file was automatically generated by json-schema-to-typescript.
|
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
* and run json-schema-to-typescript to regenerate this file.
|
|
*/
|
|
|
|
interface ContentCollectionItem extends PageCollectionItemBase {}
|
|
|
|
|
|
interface PageCollections {
|
|
content: ContentCollectionItem
|
|
}
|
|
|
|
interface Collections {
|
|
content: ContentCollectionItem
|
|
}
|
|
}
|