From 500803b151ee8f0a84d8748af48df4e2d8f4e7a1 Mon Sep 17 00:00:00 2001 From: Thorsten Hans Date: Thu, 10 Jan 2019 16:01:18 +0100 Subject: [PATCH] fix(docs): add new api docs --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 9e50399..0e4e8c4 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,10 @@ Checkout the introduction post on my [blog](https://medium.com/@ThorstenHans/integrating-angular-and-electron-using-ngx-electron-9c36affca25e#.4scol1nli) for more details. +## Support me + +[![Become a Patron!](https://c5.patreon.com/external/logo/become_a_patron_button.png)](https://www.patreon.com/bePatron?u=16380186) + ## Installation `ngx-electron` can be installed easily using either `yarn` or `npm` commands in the scope of an angular project. @@ -84,3 +88,8 @@ The `ElectronService` is exposing all API's accessible from within Electron's re * `shell: Electron.Shell` - Electron's Shell API * `nativeImage: Electron.NativeImage` - Electron's NativeImage API * `isElectronApp: boolean` - Indicates if app is being executed inside of electron or not + * `isMacOS: boolean` - Indicates if app is running in electron and on `macOS` + * `isWindows: boolean` - Indicates if app is running in electron and on `Windows` + * `isLinux: boolean` - Indicates if app is running in electron and on `Linux` + * `isX86: boolean` - Indicates if app is running in electron and on a `x86` architecture + * `isX64: boolean` - Indicates if app is running in electron and on a `x64` architecture