UNPKG

pip-services3-commons-node

Version:
14 lines (13 loc) 435 B
/** @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 { }