Files
arthome/types/types.ts
2024-08-22 19:41:40 +02:00

17 lines
270 B
TypeScript

import type { ParsedContent } from '@nuxt/content'
export interface AppType extends ParsedContent {
primary?: boolean
name: string
nuxt?: string
url: string
icon: string
color: string
tags: Tag[]
}
export interface Tag {
name: string
color: string
}