@v4fire/client
Version:
V4Fire client core library
30 lines (26 loc) • 557 B
text/typescript
/*!
* V4Fire Client Core
* https://github.com/V4Fire/Client
*
* Released under the MIT license
* https://github.com/V4Fire/Client/blob/master/LICENSE
*/
/**
* Additional options of component properties initializing
*/
export interface InitPropsObjectOptions {
/**
* Object where is stored raw modifiers
*/
from?: Dictionary;
/**
* Storage object for initialized properties
* @default `{}`
*/
store?: Dictionary;
/**
* If true, then property values is written to a store object
* @default `false`
*/
saveToStore?: boolean;
}