mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-14 12:14:33 +01:00
17 lines
270 B
TypeScript
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
|
|
}
|