Skip to content

Commit

Permalink
revert delete
Browse files Browse the repository at this point in the history
  • Loading branch information
reigj1 committed Dec 19, 2024
1 parent 89e4067 commit 803edf0
Show file tree
Hide file tree
Showing 2 changed files with 4,359 additions and 0 deletions.
29 changes: 29 additions & 0 deletions roadmap/roadmap.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
interface RootObject {
name: string;
description: string;
milestones: Milestone[];
}

interface Milestone {
name?: string | string;
milestone_id: string;
description: string;
eta: null | string | string;
status?: string;
elements: Element[];
}

interface Element {
title: string;
overview: string;
forum: string;
proposal: string;
docs: string;
eta?: string;
status: string;
is_community?: boolean;
in_beta?: boolean;
milestone_id?: string;
imported?: boolean;
description?: string;
}
Loading

0 comments on commit 803edf0

Please sign in to comment.