@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
16 lines • 566 B
TypeScript
import type { JSONObject } from 'tiny-types';
import { TinyType } from 'tiny-types';
import { Description } from './Description';
import { Name } from './Name';
export declare class ScenarioParameters extends TinyType {
readonly name: Name;
readonly description: Description;
readonly values: {
[parameter: string]: string;
};
static fromJSON(o: JSONObject): ScenarioParameters;
constructor(name: Name, description: Description, values: {
[parameter: string]: string;
});
}
//# sourceMappingURL=ScenarioParameters.d.ts.map