main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
778 bytes
|
Line | |
---|
1 | /// <reference types="react" />
|
---|
2 | declare const createReducerContext: <R extends import("react").Reducer<any, any>>(reducer: R, defaultInitialState: import("react").ReducerState<R>) => readonly [() => [import("react").ReducerState<R>, import("react").Dispatch<import("react").ReducerAction<R>>], ({ children, initialState, }: {
|
---|
3 | children?: React.ReactNode;
|
---|
4 | initialState?: import("react").ReducerState<R> | undefined;
|
---|
5 | }) => import("react").FunctionComponentElement<import("react").ProviderProps<[import("react").ReducerState<R>, import("react").Dispatch<import("react").ReducerAction<R>>] | undefined>>, import("react").Context<[import("react").ReducerState<R>, import("react").Dispatch<import("react").ReducerAction<R>>] | undefined>];
|
---|
6 | export default createReducerContext;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.