pip-services4-components-node
Version:
Portable Component Model in Node.js / ES2017
16 lines (15 loc) • 355 B
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;
}