fix(core): Fix the type for InstalledNodes.latestVersion (no-changelog) (#10782)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-09-12 11:14:03 +02:00
committed by GitHub
parent 8496adb94f
commit 7d6ec6544e
5 changed files with 5 additions and 5 deletions

View File

@@ -2447,7 +2447,7 @@ export type PublicInstalledPackage = {
export type PublicInstalledNode = {
name: string;
type: string;
latestVersion: string;
latestVersion: number;
package: PublicInstalledPackage;
};