UNPKG

matrix-react-sdk

Version:
9 lines (8 loc) 375 B
import { Dispatch, ReducerAction, ReducerState } from "react"; import type { AuthHeaderReducer } from "./AuthHeaderProvider"; interface AuthHeaderContextType { state: ReducerState<AuthHeaderReducer>; dispatch: Dispatch<ReducerAction<AuthHeaderReducer>>; } export declare const AuthHeaderContext: import("react").Context<AuthHeaderContextType | undefined>; export {};