= React.ComponentClass
| React.StatelessComponent
;
+
+export type StoreState = Partial<{
+ hasFixedNavBar: boolean;
+ hasStickyFooter: boolean;
+ navBarHeight: number;
+ footerHeight: number;
+}>;
+
+export type StoreListener = (state: StoreState) => any;
+
+export const createConnectedComponent =
+ Hello, World!
+