Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

actions.js 416B

1234567891011121314151617181920
  1. /* @flow */
  2. import { SET_LOGGING_CONFIG } from './actionTypes';
  3. /**
  4. * Sets the configuration of the feature base/logging.
  5. *
  6. * @param {Object} config - The configuration to set on the features
  7. * base/logging.
  8. * @returns {{
  9. * type: SET_LOGGING_CONFIG,
  10. * config: Object
  11. * }}
  12. */
  13. export function setLoggingConfig(config: Object) {
  14. return {
  15. type: SET_LOGGING_CONFIG,
  16. config
  17. };
  18. }