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

18 lines
293 B
TypeScript

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