Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }