@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.
13 lines (12 loc) • 411 B
TypeScript
interface dataComponentInterface {
element: any;
path: string;
moduleType?: string;
}
/**
* @description asynchronous function to write data into directory
* @param {dataComponentInterface} writeDataParams included element json, path and module type
* @returns {Promise<void>}
*/
export declare const writeData: (writeDataParams: dataComponentInterface) => Promise<void>;
export {};