ISnapshot interface
đ Descriptionâ
Interface for the form instance snapshot that is used to restore form instances in runners. To obtain a snapshot you either pause the runner or use snapshot
.
info
The snapshot object is designed to restore the virtual finite state machine to the exact state it was in when the object was generated. The object is not designed/optimized for human readability, hence the non-descriptive property names.
đ JSON Schemaâ
đĨ Download JSON Schema
info
The JSON Schema follows the 2020-12 meta-schema.
đ Type declarationâ
interface ISnapshot<T> { a: IInstanceSnapshot[];Readonly b?: T;ReadonlyOptional }
đąī¸ Hover with the mouse over a property name for a tooltip with the description of that property. Click it for more information.
đī¸ Propertiesâ
đˇī¸ a
â
Contains the snapshot data.
Typeâ
đˇī¸ b
â
Contains any custom data that should be stored in the snapshot. For example, the Autoscroll runner uses this property to store the scroll position of the runner.
Typeâ
T