UNPKG

@serenity-js/core

Version:

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

10 lines (8 loc) 185 B
import type { SerialisedAbility } from './abilities/index.js'; /** * @group Actors */ export interface SerialisedActor { name: string; abilities: Array<SerialisedAbility>; }