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) 176 B
import type { SerialisedAbility } from './abilities'; /** * @group Actors */ export interface SerialisedActor { name: string; abilities: Array<SerialisedAbility>; }