@moonsong-labs/moonwall-cli
Version:
Testing framework for the Moon family of projects
13 lines (10 loc) • 345 B
TypeScript
import { FoundationType, MoonwallConfig } from '../types/config.js';
declare function generateConfig(): Promise<void>;
declare function createConfig(options: {
label: string;
timeout: number;
environmentName: string;
foundation: FoundationType;
testDir: string;
}): MoonwallConfig;
export { createConfig, generateConfig };