@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) • 425 B
TypeScript
interface schemaComponentInterface {
element: any;
path: string;
moduleType: string;
}
/**
* @description asynchronous function to write schema into directory
* @param {schemaComponentInterface} writeSchemaParams included element json, path, and module type
* @returns {Promise<void>}
*/
export declare const writeSchema: (writeSchemaParams: schemaComponentInterface) => Promise<void>;
export {};