UNPKG

@moonwall/cli

Version:

Testing framework for the Moon family of projects

15 lines (14 loc) 865 B
import "@moonbeam-network/api-augment"; 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[];