@dot.indonesia/po-gen
Version:
This project has created to relieve work load as SDET or Automation Test Engineer. You just export the postman collection, and run this generator to write the automation code.
19 lines (18 loc) • 791 B
TypeScript
import { CLIAutomationQuestionInterface } from "../interface/question.interface.js";
/**
* @description questions list for automation generation
* @param {CLIAutomationQuestionInterface} automationQuestionParams included the script arguments and needed package states
* @returns {Promise<any>}
*/
export declare const CLIAutomationQuestion: (automationQuestionParams: CLIAutomationQuestionInterface) => Promise<any>;
/**
* @description questions list for json selected options
* @param {any} answers options
* @returns {Promise<any>}
*/
export declare const CLIJSONQuestion: (answers: any) => Promise<any>;
/**
* @description questions list for environment generation
* @returns {Promise<any>}
*/
export declare const CLIEnvironmentQuestion: () => Promise<any>;