7 lines
150 B
TypeScript
7 lines
150 B
TypeScript
export interface SiteContent {
|
|
key: string
|
|
value: string
|
|
type: 'text' | 'image_url' | 'html' | 'json' | 'long_text'
|
|
section: string
|
|
}
|