UNPKG

pip-services3-commons-nodex

Version:

Portable abstractions and patterns for Pip.Services in Node.js / ES2017

14 lines (13 loc) 420 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 { }