10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
import { GlobalState } from '../../global/types';
|
|
|
|
export function selectNotifySettings(global: GlobalState) {
|
|
return global.settings.byKey;
|
|
}
|
|
|
|
export function selectNotifyExceptions(global: GlobalState) {
|
|
return global.settings.notifyExceptions;
|
|
}
|