@twin.org/engine-models 0.0.1-next.21 → 0.0.1-next.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -60,6 +60,7 @@ export interface IEngineCore<C extends IEngineCoreConfig = IEngineCoreConfig, S
|
|
|
60
60
|
/**
|
|
61
61
|
* Populate the engine from the clone data.
|
|
62
62
|
* @param cloneData The clone data to populate from.
|
|
63
|
+
* @param silent Should the clone be silent.
|
|
63
64
|
*/
|
|
64
|
-
populateClone(cloneData: IEngineCoreClone<C, S
|
|
65
|
+
populateClone(cloneData: IEngineCoreClone<C, S>, silent?: boolean): void;
|
|
65
66
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -162,7 +162,7 @@ The clone data.
|
|
|
162
162
|
|
|
163
163
|
### populateClone()
|
|
164
164
|
|
|
165
|
-
> **populateClone**(`cloneData`): `void`
|
|
165
|
+
> **populateClone**(`cloneData`, `silent`?): `void`
|
|
166
166
|
|
|
167
167
|
Populate the engine from the clone data.
|
|
168
168
|
|
|
@@ -172,6 +172,10 @@ Populate the engine from the clone data.
|
|
|
172
172
|
|
|
173
173
|
The clone data to populate from.
|
|
174
174
|
|
|
175
|
+
• **silent?**: `boolean`
|
|
176
|
+
|
|
177
|
+
Should the clone be silent.
|
|
178
|
+
|
|
175
179
|
#### Returns
|
|
176
180
|
|
|
177
181
|
`void`
|