pip-services3-commons-node
Version:
Portable abstractions and patterns for Pip.Services in Node.js
14 lines (13 loc) • 435 B
text/typescript
/** @module config */
import { IConfigurable } from './IConfigurable';
/**
* An interface to set configuration parameters to an object.
*
* It is similar to [[IConfigurable]] interface, but emphasises the fact
* that <code>configure()</code> method can be called more than once to change object configuration
* in runtime.
*
* @see [[IConfigurable]]
*/
export interface IReconfigurable extends IConfigurable {
}