UNPKG

apphouse

Version:

Component library for React that uses observable state management and theme-able components.

8 lines (7 loc) 279 B
/** * A react hook that returns the Apphouse store that allows * access to features such as routing, feedback, shortcuts, etc. * @returns The Apphouse store */ import { IStoreWithBase } from './context.interface'; export declare function useApphouse<T>(): IStoreWithBase<T>;