maildev
Version:
SMTP Server and Web Interface for reading and testing emails during development
17 lines • 338 B
TypeScript
/**
* MailDev Init Command
*
* Interactive setup wizard for creating configuration files
*/
/**
* Init command options
*/
export interface InitOptions {
force?: boolean;
json?: boolean;
}
/**
* Run the init command
*/
export declare function runInit(options: InitOptions): Promise<void>;
//# sourceMappingURL=init.d.ts.map