UNPKG

@moonwall/cli

Version:

Testing framework for the Moon family of projects

14 lines (13 loc) 825 B
import type { MoonwallConfig, Environment } from "@moonwall/types"; export declare function configExists(): Promise<boolean>; export declare function configSetup(args: string[]): void; export declare function importConfig(configPath: string): Promise<MoonwallConfig>; export declare function isOptionSet(option: string): boolean; export declare function isEthereumZombieConfig(): boolean; export declare function isEthereumDevConfig(): boolean; export declare function cacheConfig(): Promise<void>; export declare function getEnvironmentFromConfig(): Environment; export declare function importJsonConfig(): MoonwallConfig; export declare function importAsyncConfig(): Promise<MoonwallConfig>; export declare function loadEnvVars(): void; export declare function parseZombieConfigForBins(zombieConfigPath: string): string[];