import type { ActionId } from './ActionId'; import type { Guid } from './Guid'; import type { PackageId } from './PackageId'; export type RunActionParams = { packageId: PackageId; eventId: Guid | null; actionId: ActionId; input?: any; };