-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing
index
exports and type
- Loading branch information
1 parent
1ce644c
commit b283f6c
Showing
4 changed files
with
38 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import type { IEventHandler } from "../../events"; | ||
import type { IMapChange } from "./IMapChange"; | ||
|
||
/** | ||
* A specialized interface for handling map changed events. | ||
* @template TSubject The type of object that raises the event. | ||
* @template TKey The type of keys the map contains. | ||
* @template TItem The type of items the map contains. | ||
*/ | ||
export interface IMapChangedEventHandler<TSubject, TKey, TItem> extends IEventHandler<TSubject, IMapChange<TKey, TItem>> { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export type { IMapChange, MapChangeOperation } from './IMapChange'; | ||
export type { INotifyMapChanged } from './INotifyMapChanged'; | ||
export type { IMapChangedEvent } from './IMapChangedEvent'; | ||
export type { IMapChangedEventHandler } from './IMapChangedEventHandler'; | ||
|
||
export type { IReadOnlyObservableMap } from './IReadOnlyObservableMap'; | ||
export type { IObservableMap } from './IObservableMap'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
export type { ISetChange, SetChangeOperation } from './ISetChange'; | ||
export type { INotifySetChanged } from './INotifySetChanged'; | ||
export type { ISetChangedEvent } from './ISetChangedEvent'; | ||
export type { ISetChangedEventHandler } from './ISetChangedEventHandler'; | ||
export type { ISetChange, SetChangeOperation } from './ISetChange'; | ||
|
||
export type { ISetLike } from './ISetLike'; | ||
export type { IReadOnlyObservableSet } from './IReadOnlyObservableSet'; | ||
export type { IObservableSet } from './IObservableSet'; | ||
|
||
export { ReadOnlyObservableSet } from './ReadOnlyObservableSet'; | ||
export { ObservableSet } from './ObservableSet'; | ||
export { isSetLike } from './isSetLike'; |