Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

featureFlag.web.js 325B

12345678910
  1. // @flow
  2. declare var interfaceConfig: Object;
  3. /**
  4. * Everything about recent list on web should be behind a feature flag and in
  5. * order to share code, this alias for the feature flag on mobile is set to the
  6. * value defined in interface_config
  7. * @type {boolean}
  8. */
  9. export const { RECENT_LIST_ENABLED } = interfaceConfig;