Skip to content

Commit

Permalink
refactor: remove unused export (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
ComradeVanti authored Jan 14, 2024
1 parent c727707 commit 1789d7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cmd-search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ type SearchResultCode = 0 | 1;

export type SearchOptions = CmdOptions;

export type SearchedPackument = Omit<UnityPackument, "versions"> & {
type SearchedPackument = Omit<UnityPackument, "versions"> & {
versions: Record<SemanticVersion, "latest">;
};

export type OldSearchResult =
type OldSearchResult =
| SearchedPackument[]
| Record<DomainName, SearchedPackument>;

Expand Down

0 comments on commit 1789d7f

Please sign in to comment.