Port Settings and OS to TypeScript

This commit is contained in:
Daniel Gasienica 2018-05-02 19:57:02 -04:00
parent 38b23c6627
commit a102016ed8
6 changed files with 36 additions and 23 deletions

4
ts/types/Settings.ts Normal file
View file

@ -0,0 +1,4 @@
import * as OS from '../OS';
export const isAudioNotificationSupported = () =>
OS.isWindows() || OS.isMacOS();