@uuv/runner-commons
Version:
A common lib for uuv
20 lines (19 loc) • 737 B
TypeScript
/**
* Software Name : UUV
*
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT License,
* see the "LICENSE" file for more details
*
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
* Software description: Make test writing fast, understandable by any human
* understanding English or French.
*/
import { GenerateFileProcessing } from "./common";
import { AccessibleRole } from "./accessible-role";
export declare class BasedRoleStepDefinition extends GenerateFileProcessing {
runGenerate(): void;
generateWordingFiles(generatedFile: string, lang: string): void;
computeWordingFile(data: string, wordingFile: string, definedRoles: AccessibleRole[], generatedFile: string): void;
}