* Returns the current state of the collection as an array of changes * @param options - Options including optional where filter * @returns An array of changes * @example * // Get all items as changes * const allChanges = collection.currentStateAsChanges() * * // Get only items m
(
options: CurrentStateAsChangesOptions = {},
)
| 886 | * }) |
| 887 | */ |
| 888 | public currentStateAsChanges( |
| 889 | options: CurrentStateAsChangesOptions = {}, |
| 890 | ): Array<ChangeMessage<WithVirtualProps<TOutput, TKey>>> | void { |
| 891 | return currentStateAsChanges(this, options) |
| 892 | } |
| 893 | |
| 894 | /** |
| 895 | * Subscribe to changes in the collection |
no test coverage detected