Skip to content

Commit

Permalink
Added iterators
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei15193 committed Apr 21, 2024
1 parent 28778f9 commit 95af1a7
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 191 deletions.
2 changes: 1 addition & 1 deletion src/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export interface ICollectionChange<TItem> {
/**
* Describes all the possible operations that can be performed on a collection.
*/
export type CollectionOperation = 'push' | 'pop' | 'unshift' | 'shift' | 'sort' | 'reverse' | 'copyWithin' | 'set' | 'delete' | 'fill' | 'clear' | 'reset';
export type CollectionOperation = 'push' | 'pop';

/**
* A specialized event for subscribing and unsubscribing from collection changed events.
Expand Down
Loading

0 comments on commit 95af1a7

Please sign in to comment.