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.

18 lines (17 loc) 538 B
interface pagesComponentInterface { element: any; path: string; schemaPath: string; dataPath: string; helperPath: string; moduleType: string; configPath: string; loggerPath: string; } /** * @description asynchronous function to write pages into directory * @param {pagesComponentInterface} writePagesParams included element json and all needed path * @returns {Promise<void>} */ export declare const writePages: (writePagesParams: pagesComponentInterface) => Promise<void>; export {};