30 lines
496 B
TypeScript
30 lines
496 B
TypeScript
export interface NavItem {
|
|
id: string
|
|
title: string
|
|
path: string
|
|
children?: NavItem[]
|
|
}
|
|
|
|
export interface DocumentSection {
|
|
id: string
|
|
title: string
|
|
content: string
|
|
order: number
|
|
subsections?: DocumentSection[]
|
|
}
|
|
|
|
export interface GovernanceDocument {
|
|
id: string
|
|
title: string
|
|
description: string
|
|
lastUpdated: Date
|
|
sections: DocumentSection[]
|
|
}
|
|
|
|
export interface Hackerspace {
|
|
name: string
|
|
location: string
|
|
website?: string
|
|
established?: Date
|
|
logo?: string
|
|
} |