UNPKG
ngx-fs
Version:
latest (0.0.1)
0.0.1
Access FS API from Electron through Angular Service
github.com/inoverse/ngx-fs
inoverse/ngx-fs
ngx-fs
/
src
/
fsService.d.ts
12 lines
(11 loc)
•
263 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Fs
}
from
'./fs.interface'
;
export
declare
class
FsService
{
private
_fs;
private
readonly
f_s;
/** * determines if SPA is running in Electron *
@returns
{
boolean
} */
readonly
isElectronApp
:
boolean
;
readonly
fs
:
Fs
; }