Files
standardnotes-app-web/app/assets/javascripts/Version.ts
2022-04-13 22:02:34 +05:30

9 lines
258 B
TypeScript

/** 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__