jssm 5.79.0 → 5.79.1

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.
package/jssm.d.ts CHANGED
@@ -312,6 +312,23 @@ declare class Machine<mDT> {
312
312
  *
313
313
  */
314
314
  prop(name: string): any;
315
+ /*********
316
+ *
317
+ * Get the current value of a given property name. If missing on the state
318
+ * and without a global default, throw, unlike {@link prop}, which would
319
+ * return `undefined` instead.
320
+ *
321
+ * ```typescript
322
+ *
323
+ * ```
324
+ *
325
+ * @param name The relevant property name to look up
326
+ *
327
+ * @returns The value behind the prop name. Because functional props are
328
+ * evaluated as getters, this can be anything.
329
+ *
330
+ */
331
+ strict_prop(name: string): any;
315
332
  /*********
316
333
  *
317
334
  * Get the current value of every prop, as an object. If no current definition
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jssm",
3
- "version": "5.79.0",
3
+ "version": "5.79.1",
4
4
  "engines": {
5
5
  "node": ">=10.0.0"
6
6
  },