Skip to content

Commit

Permalink
chore(release): release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zewa666 committed Oct 8, 2018
1 parent 7eb10dc commit 2336064
Show file tree
Hide file tree
Showing 21 changed files with 134 additions and 140 deletions.
1 change: 1 addition & 0 deletions dist/amd/store.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export declare class Store<T> {
registerAction(name: string, reducer: Reducer<T>): void;
unregisterAction(reducer: Reducer<T>): void;
isActionRegistered(reducer: Reducer<T> | string): boolean;
resetToState(state: T): void;
dispatch<P extends any[]>(reducer: Reducer<T, P> | string, ...params: P): Promise<void>;
private handleQueue;
private internalDispatch;
Expand Down
52 changes: 23 additions & 29 deletions dist/amd/store.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/store.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/commonjs/store.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export declare class Store<T> {
registerAction(name: string, reducer: Reducer<T>): void;
unregisterAction(reducer: Reducer<T>): void;
isActionRegistered(reducer: Reducer<T> | string): boolean;
resetToState(state: T): void;
dispatch<P extends any[]>(reducer: Reducer<T, P> | string, ...params: P): Promise<void>;
private handleQueue;
private internalDispatch;
Expand Down
Loading

0 comments on commit 2336064

Please sign in to comment.