Files
parakasa/types/cms.ts
2026-01-25 01:46:12 +03:00

7 lines
150 B
TypeScript

export interface SiteContent {
key: string
value: string
type: 'text' | 'image_url' | 'html' | 'json' | 'long_text'
section: string
}