Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zmitry committed May 19, 2018
1 parent 17a2a76 commit 1569acb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions dist/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,9 @@
exports.build = build;
exports.createActions = createActions;
exports.createEffects = createEffects;
exports.checkKeyUsage = checkKeyUsage;
exports.wrapKeys = wrapKeys;
exports.Store = Store;

Object.defineProperty(exports, '__esModule', { value: true });

Expand Down
2 changes: 1 addition & 1 deletion dist/lib/index.js.map

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

2 changes: 1 addition & 1 deletion dist/restate.es5.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,4 +339,4 @@ function createState(initialState) {
return res;
}

export { createState, reducerPathSymbol, getKeys, ReducerBuilder, createAction, build, createActions, createEffects };
export { createState, reducerPathSymbol, getKeys, ReducerBuilder, createAction, build, createActions, createEffects, checkKeyUsage, wrapKeys, Store };
1 change: 1 addition & 0 deletions dist/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ import { IReducerBuilder, R } from "./createReducer";
export declare function createState<T>(initialState: T): IReducerBuilder<R<T>>;
export * from "./createReducer";
export * from "./createAction";
export * from "./store";
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ export function createState<T>(initialState: T): IReducerBuilder<R<T>> {

export * from "./createReducer";
export * from "./createAction";
export * from "./store";

0 comments on commit 1569acb

Please sign in to comment.