UNPKG

tdg-react-doc-viewer

Version:
14 lines (12 loc) 416 B
import { Dispatch } from 'react'; import { MainStateActions } from '../store/actions'; import { IMainState } from '../store/mainStateReducer'; import { DocRenderer } from '..'; /** * Custom Hook for loading the current document into context */ export declare const useDocumentLoader: () => { state: IMainState; dispatch: Dispatch<MainStateActions>; CurrentRenderer: DocRenderer | null | undefined; };