@reactables/examples 1.3.0-alpha.3 → 1.3.0-beta-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,5 +6,5 @@ type CounterActions = {
|
|
|
6
6
|
increment: () => void;
|
|
7
7
|
reset: () => void;
|
|
8
8
|
};
|
|
9
|
-
export declare const RxCounter: () => Reactable<CounterState, CounterActions
|
|
9
|
+
export declare const RxCounter: () => Reactable<CounterState, CounterActions, Record<string, string>>;
|
|
10
10
|
export {};
|
|
@@ -15,5 +15,5 @@ type EventTicketsActions = {
|
|
|
15
15
|
selectEvent: (event: EventTypes) => void;
|
|
16
16
|
setQty: (qty: number) => void;
|
|
17
17
|
};
|
|
18
|
-
export declare const RxEventTickets: (getPriceApi: (payload: FetchPricePayload) => ObservableOrPromise<number>) => Reactable<EventTicketsState, EventTicketsActions
|
|
18
|
+
export declare const RxEventTickets: (getPriceApi: (payload: FetchPricePayload) => ObservableOrPromise<number>) => Reactable<EventTicketsState, EventTicketsActions, Record<string, string>>;
|
|
19
19
|
export {};
|
|
@@ -8,5 +8,5 @@ export declare const initialState: TodoUpdatesState;
|
|
|
8
8
|
type TodoUpdatesActions = {
|
|
9
9
|
sendTodoStatusUpdate: (payload: UpdateTodoPayload) => void;
|
|
10
10
|
};
|
|
11
|
-
export declare const RxTodoUpdates: (updateTodoApi: (payload: UpdateTodoPayload) => ObservableOrPromise<UpdateTodoPayloadSuccess>) => Reactable<TodoUpdatesState, TodoUpdatesActions
|
|
11
|
+
export declare const RxTodoUpdates: (updateTodoApi: (payload: UpdateTodoPayload) => ObservableOrPromise<UpdateTodoPayloadSuccess>) => Reactable<TodoUpdatesState, TodoUpdatesActions, Record<string, string>>;
|
|
12
12
|
export {};
|
package/package.json
CHANGED
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"author": "David Lai",
|
|
15
15
|
"license": "ISC",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@reactables/core": "^1.3.0-
|
|
17
|
+
"@reactables/core": "^1.3.0-beta-1"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"rxjs": "^6.0.0 || ^7.0.0"
|
|
21
21
|
},
|
|
22
|
-
"version": "1.3.0-
|
|
22
|
+
"version": "1.3.0-beta-1"
|
|
23
23
|
}
|