1 | /** @module config */
|
2 | import { 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 | */
|
12 | export interface IReconfigurable extends IConfigurable {
|
13 | }
|