Files
caperren-com/src/interfaces/timeline.ts
Corwin Perren 8fd744118f
Some checks failed
Build and Test - Staging / test (pull_request) Failing after 4m56s
Build and Test - Staging / build_and_push (pull_request) Has been skipped
Build and Test - Staging / deploy_staging (pull_request) Has been skipped
Component for PCBs, many visual tweaks, finished dechorionator content, added many many photos, started work on mars rover software lead, timeline to luxon and automatic date-based ordering
2025-12-12 22:48:03 -08:00

9 lines
153 B
TypeScript

import { DateTime } from "luxon";
export interface timelineEntry {
event: string;
eventDetail?: string;
date: DateTime;
description?: string;
}