UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

16 lines (15 loc) 444 B
import { FrontAction } from "../../data-fields/models/changed-fields"; export interface EventOutcome { /** * Message associated with triggered event, defined in petri net xml file. */ message?: string; /** * Array of event outcomes, result of events that were triggered by parent event */ outcomes?: Array<EventOutcome>; /** * Array of front actions */ frontActions?: Array<FrontAction>; }