UNPKG

zksync-cli

Version:

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

11 lines (10 loc) 288 B
import type Module from "../Module.js"; type Package = { module: Module; name: string; version: string; symlinked?: boolean; }; export declare const findDefaultModules: () => Promise<Package[]>; export declare const getModulePackages: () => Promise<Package[]>; export {};