Files
arthome/types/types.ts
2024-08-22 16:14:29 +02:00

16 lines
250 B
TypeScript

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