refactor: types and constants directories

This commit is contained in:
Mo
2022-06-01 10:23:37 -05:00
parent 54125cec21
commit 721cf8df35
70 changed files with 67 additions and 170 deletions

View File

@@ -0,0 +1,8 @@
/** Declared in webpack config */
declare const __VERSION__: string
declare const __DESKTOP__: boolean
declare const __WEB__: boolean
export const WebAppVersion = __VERSION__
export const IsDesktopPlatform = __DESKTOP__
export const IsWebPlatform = __WEB__