import type { ActivityInput } from "./ActivityInput"; import type { Component } from "./Component"; import type { Resource } from "./Resource"; /** Defines an activity in a program. */ export interface Activity extends Resource { /** Indicates the action to perform. */ action?: string; /** Indicates the action to perform. */ inputs?: Record; /** Indicates the parent component. */ parent?: Component; }