22 lines
318 B
JavaScript
22 lines
318 B
JavaScript
|
/** @format */
|
||
|
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import orders from './orders';
|
||
|
|
||
|
function createWcApiSpec() {
|
||
|
return {
|
||
|
selectors: {
|
||
|
...orders.selectors,
|
||
|
},
|
||
|
operations: {
|
||
|
read( resourceNames ) {
|
||
|
return [ ...orders.operations.read( resourceNames ) ];
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export default createWcApiSpec();
|