UNPKG

@serenity-js/core

Version:

The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure

13 lines 535 B
import type { JSONObject } from 'tiny-types'; import { TinyType } from 'tiny-types'; import { FileSystemLocation } from '../io'; import { Category } from './Category'; import { Name } from './Name'; export declare class ScenarioDetails extends TinyType { readonly name: Name; readonly category: Category; readonly location: FileSystemLocation; static fromJSON(o: JSONObject): ScenarioDetails; constructor(name: Name, category: Category, location: FileSystemLocation); } //# sourceMappingURL=ScenarioDetails.d.ts.map