Skip to content

Commit

Permalink
fix: wrong argument type in the stringify function (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaStebaev committed Apr 13, 2024
1 parent 9779320 commit 9ff2409
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/version.d.ts
Expand Up @@ -9,5 +9,7 @@ export function parse(
version: string | null | undefined,
regex?: RegExp,
): Pep440Version | null;
export function stringify(version: string | null | undefined): string | null;
export function stringify(
version: Pep440Version | null | undefined,
): string | null;
export function valid(version: string | null | undefined): string | null;

0 comments on commit 9ff2409

Please sign in to comment.