/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface WorkflowTransitionLinks { /** * The port that the transition starts from. */ fromPort?: number; /** * The status that the transition starts from. */ fromStatusReference?: string; /** * The port that the transition goes to. */ toPort?: number; } //# sourceMappingURL=WorkflowTransitionLinks.d.ts.map