@woocommerce/data
Version:
WooCommerce Admin data store and utilities
10 lines • 331 B
TypeScript
/**
* External dependencies
*/
import type { Reducer } from 'redux';
import { Action } from './actions';
import { OptionsState } from './types';
declare const optionsReducer: Reducer<OptionsState, Action>;
export type State = ReturnType<typeof optionsReducer>;
export default optionsReducer;
//# sourceMappingURL=reducer.d.ts.map