diff options
| author | Priyansh <[email protected]> | 2020-12-22 18:39:20 +0530 |
|---|---|---|
| committer | Priyansh <[email protected]> | 2020-12-22 18:39:20 +0530 |
| commit | fb873ec2c3cb71cd478e6d48b424ddbba67cab0a (patch) | |
| tree | 29e763f84d54d24152a212ec19cdfad2d56235b5 /src/app.ts | |
| parent | 6593dc005ae8d8f94e7c6644e3af4026e57cd2bf (diff) | |
| download | styx-fb873ec2c3cb71cd478e6d48b424ddbba67cab0a.tar.xz styx-fb873ec2c3cb71cd478e6d48b424ddbba67cab0a.zip | |
App rewrite using typescript
Diffstat (limited to 'src/app.ts')
| -rw-r--r-- | src/app.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/app.ts b/src/app.ts new file mode 100644 index 0000000..b85e318 --- /dev/null +++ b/src/app.ts @@ -0,0 +1,4 @@ +import { app, BrowserWindow } from 'electron'; +import windowCreator from './windowCreator'; + +windowCreator.main(app, BrowserWindow); |
