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.
| 1234567891011 |
- import { IReduxState } from '../../app/types';
-
- /**
- * Selector for retrieving the disabled sounds array.
- *
- * @param {Object} state - The Redux state.
- * @returns {Array<string>} - The disabled sound id's array.
- */
- export function getDisabledSounds(state: IReduxState) {
- return state['features/base/config'].disabledSounds || [];
- }
|