Files
hackerspace-governance-in-a…/src/types/index.ts
Moheeb Zara b15a759842 yolo2.0
2025-12-05 23:54:42 -07:00

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
}