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 427 B
import type { JSONObject } from 'tiny-types'; import { TinyType } from 'tiny-types'; import { Description } from './Description'; import { Name } from './Name'; 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