@@ -327,7 +327,7 @@ export type State<Model extends object = {}> = RecursiveState<Model>;
327
327
/**
328
328
* Creates a store.
329
329
*
330
- * https://easy-peasy.now.sh /docs/api/create-store.html
330
+ * https://easy-peasy.dev /docs/api/create-store.html
331
331
*
332
332
* @example
333
333
*
@@ -501,7 +501,7 @@ type Meta = {
501
501
/**
502
502
* Declares a thunk against your model type definition.
503
503
*
504
- * https://easy-peasy.now.sh /docs/typescript-api/thunk.html
504
+ * https://easy-peasy.dev /docs/typescript-api/thunk.html
505
505
*
506
506
* @param Model - The model that the thunk is being bound to.
507
507
* @param Payload - The type of the payload expected. Set to undefined if none.
@@ -536,7 +536,7 @@ export type Thunk<
536
536
* Thunks are typically used to encapsulate side effects and are able to
537
537
* dispatch other actions.
538
538
*
539
- * https://easy-peasy.now.sh /docs/api/thunk.html
539
+ * https://easy-peasy.dev /docs/api/thunk.html
540
540
*
541
541
* @example
542
542
*
@@ -619,7 +619,7 @@ export type Action<Model extends object, Payload = void> = {
619
619
/**
620
620
* Declares an action.
621
621
*
622
- * https://easy-peasy.now.sh /docs/api/action
622
+ * https://easy-peasy.dev /docs/api/action
623
623
*
624
624
* @example
625
625
*
@@ -935,7 +935,7 @@ export function generic<T>(value: T): Generic<T>;
935
935
/**
936
936
* A React Hook allowing you to use state within your component.
937
937
*
938
- * https://easy-peasy.now.sh /docs/api/use-store-state.html
938
+ * https://easy-peasy.dev /docs/api/use-store-state.html
939
939
*
940
940
* Note: you can create a pre-typed version of this hook via "createTypedHooks"
941
941
*
@@ -960,7 +960,7 @@ export function useStoreState<
960
960
/**
961
961
* A React Hook allowing you to use actions within your component.
962
962
*
963
- * https://easy-peasy.now.sh /docs/api/use-store-actions.html
963
+ * https://easy-peasy.dev /docs/api/use-store-actions.html
964
964
*
965
965
* Note: you can create a pre-typed version of this hook via "createTypedHooks"
966
966
*
@@ -981,7 +981,7 @@ export function useStoreActions<
981
981
/**
982
982
* A react hook that returns the store instance.
983
983
*
984
- * https://easy-peasy.now.sh /docs/api/use-store.html
984
+ * https://easy-peasy.dev /docs/api/use-store.html
985
985
*
986
986
* Note: you can create a pre-typed version of this hook via "createTypedHooks"
987
987
*
0 commit comments