UNPKG

420 BTypeScriptView Raw
1/** @module config */
2import { IConfigurable } from './IConfigurable';
3/**
4 * An interface to set configuration parameters to an object.
5 *
6 * It is similar to [[IConfigurable]] interface, but emphasises the fact
7 * that <code>configure()</code> method can be called more than once to change object configuration
8 * in runtime.
9 *
10 * @see [[IConfigurable]]
11 */
12export interface IReconfigurable extends IConfigurable {
13}