pip-services3-commons-node
Version:
Portable abstractions and patterns for Pip.Services in Node.js
17 lines (15 loc) • 353 B
text/typescript
/** @module run */
import { Parameters } from './Parameters';
/**
* Interface for components that require execution parameters.
*
* @see [[IConfigurable]]
*/
export interface IParameterized {
/**
* Sets execution parameters.
*
* @param parameters execution parameters.
*/
setParameters(parameters: Parameters): void;
}