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

selector.ts 368B

1234567891011
  1. import { IReduxState } from '../app/types';
  2. /**
  3. * Selects the thumbnail height to the quality level mapping from the config.
  4. *
  5. * @param {Object} state - The redux state.
  6. * @returns {Map<number,number>}
  7. */
  8. export function getMinHeightForQualityLvlMap(state: IReduxState): Map<number, number> {
  9. return state['features/video-quality'].minHeightForQualityLvl;
  10. }