fix(types): add forceversion to binarymanagerconfig interface

This commit is contained in:
kaitranntt
2025-12-05 13:35:29 -05:00
parent 20bf6266d2
commit 3bb1ea7541
+2
View File
@@ -46,6 +46,8 @@ export interface BinaryManagerConfig {
maxRetries: number; maxRetries: number;
/** Enable verbose logging */ /** Enable verbose logging */
verbose: boolean; verbose: boolean;
/** Force specific version (skip auto-upgrade to latest) */
forceVersion: boolean;
} }
/** /**