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

Commit

Permalink
chore: remove comments
Browse files Browse the repository at this point in the history
Following some experimentation, these data structures have what's needed,
but not in an ergonomic enough way.
This is to be delayed for a later date, most likely forever.

Fixes: #37
  • Loading branch information
lishaduck committed Jan 31, 2024
1 parent ffad87d commit de893fd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/data/data-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ type Rooms = Record<`${Wing}${Lvl}${number}${number}`, Coords>;
/**
* Represent the level data.
*/
// TODO(ParkerH27): Use a Set here.
type Level = number[][];

/**
Expand Down
1 change: 0 additions & 1 deletion src/data/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ const profileSchema = z.tuple([z.string(), z.string()]);
/**
* Represents the schema for a list of profiles.
*/
// TODO(ParkerH27): Make this a Map.
const profilesListSchema = z.union([
z.tuple([profilesSchema]).rest(profileSchema.array()),
z.tuple([]),
Expand Down

0 comments on commit de893fd

Please sign in to comment.