Guenter
Guenter
Re-adding code from PR #350 with suggested doc regarding possible violation of YouTube'S TOS.
See #138 for details.
Issue: In `generateStore.d.ts` https://github.com/trufflesuite/drizzle/blob/develop/packages/store/types/generateStore.d.ts the attribute for reducers has the name `reducers` ``` export interface IStoreConfig { [key: string]: any; drizzleOptions: IDrizzleOptions; reducers?: any; appSagas?: any[]; appMiddlewares?: any[]; disableReduxDevTools?: boolean;...