UNPKG

zksync-cli

Version:

CLI tool that simplifies the process of developing applications and interacting with the ZKsync network

10 lines (9 loc) 354 B
export type PackageManagerType = "npm" | "yarn" | "pnpm" | "bun"; interface PackageManagerMethods { install(packages?: string): string; run(script: string): string; uninstall(packages?: string): string; isInstalled(): Promise<boolean>; } export declare const packageManagers: Record<PackageManagerType, PackageManagerMethods>; export {};