UNPKG

@serenity-js/core

Version:

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

11 lines 433 B
import type { JSONObject } from 'tiny-types'; import { TinyType } from 'tiny-types'; import { Description } from './Description.js'; import { Name } from './Name.js'; export declare class BusinessRule extends TinyType { readonly name: Name; readonly description: Description; static fromJSON(o: JSONObject): BusinessRule; constructor(name: Name, description: Description); } //# sourceMappingURL=BusinessRule.d.ts.map