Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
Use correct typescript nullable notation
Browse files Browse the repository at this point in the history
  • Loading branch information
OxygenCobalt authored Oct 10, 2023
1 parent f9e9777 commit acffc22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/backend-schema-proposal.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ GET `/dashboard`
interface Dashboard {
routes: Route[];
stops: Stop[];
alert: Alert | null;
alert?: Alert;
}

interface Alert {
Expand Down

0 comments on commit acffc22

Please sign in to comment.