UNPKG

@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.

14 lines (13 loc) 672 B
import { devPackageInstallInterface, packageInstallInterface } from '../interface/package.interface.js'; /** * @description package execution * @param {packageInstallInterface} packageInterface included packacge, json file, and module type * @returns {Promise<void>} */ export declare const installPackage: (packageInterface: packageInstallInterface) => Promise<void>; /** * @description dev package execution * @param {devPackageInstallInterface} devPackageInterface included packacge, json file, and module type * @returns {Promise<void>} */ export declare const installDevPackge: (devPackageInterface: devPackageInstallInterface) => Promise<void>;