Skip to content

Commit

Permalink
types(NodeInfoVersion): use nullish for preRelease and build
Browse files Browse the repository at this point in the history
  • Loading branch information
Fab1o0107 committed Dec 21, 2023
1 parent f25872d commit d5830fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ export interface NodeInfoVersion {
major: number;
minor: number;
patch: number;
preRelease?: string;
build?: string;
preRelease: string | null;
build: string | null;
}

export interface NodeInfoGit {
Expand Down

0 comments on commit d5830fc

Please sign in to comment.