Skip to content

Commit

Permalink
change package name redux-persist -> @kompot/redux-persist
Browse files Browse the repository at this point in the history
  • Loading branch information
kompot committed Nov 11, 2019
1 parent 9f15082 commit b1d4aa9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

// This is not single module. There are many module included by reference directives.
// tslint:disable-next-line: no-single-declare-module
declare module "redux-persist" {
declare module "@kompot/redux-persist" {
export { default as persistReducer } from 'redux-persist/es/persistReducer';
export { default as persistCombineReducers } from 'redux-persist/es/persistCombineReducers';
export { default as persistStore } from 'redux-persist/es/persistStore';
Expand Down
2 changes: 1 addition & 1 deletion types/integration/react.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare module "redux-persist/integration/react" {
declare module "@kompot/redux-persist/integration/react" {
import { ReactNode, PureComponent } from "react";
import { Persistor } from "redux-persist/es/types";

Expand Down
2 changes: 1 addition & 1 deletion types/stateReconciler/autoMergeLevel1.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module "redux-persist/es/stateReconciler/autoMergeLevel1" {
import { PersistConfig } from "redux-persist";
import { PersistConfig } from "@kompot/redux-persist";

// tslint:disable-next-line: strict-export-declare-modifiers
export default function autoMergeLevel1<S>(inboundState: S, originalState: S, reducedState: S, config: PersistConfig<S>): S;
Expand Down
2 changes: 1 addition & 1 deletion types/stateReconciler/autoMergeLevel2.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module "redux-persist/es/stateReconciler/autoMergeLevel2" {
import { PersistConfig } from "redux-persist";
import { PersistConfig } from "@kompot/redux-persist";

// tslint:disable-next-line: strict-export-declare-modifiers
export default function autoMergeLevel2<S>(inboundState: S, originalState: S, reducedState: S, config: PersistConfig<S>): S;
Expand Down
2 changes: 1 addition & 1 deletion types/stateReconciler/hardSet.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module "redux-persist/es/stateReconciler/hardSet" {
import { PersistConfig } from "redux-persist";
import { PersistConfig } from "@kompot/redux-persist";

// tslint:disable-next-line: strict-export-declare-modifiers
export default function hardSet<S>(inboundState: S): S;
Expand Down

0 comments on commit b1d4aa9

Please sign in to comment.