UNPKG

kist

Version:

Package Pipeline Processor

9 lines (8 loc) 248 B
/** * Defines the structure of options passed to step actions. * This type provides a flexible, yet type-safe, way to manage action-specific settings. */ export interface ActionOptionsType { [key: string]: any; optionalField?: string; }