Files
standardnotes-app-web/packages/web/src/javascripts/Constants/Version.ts
2022-06-07 11:52:15 -05:00

7 lines
262 B
TypeScript

/** Declared in webpack config */
declare const __WEB_VERSION__: string
export const WebAppVersion = __WEB_VERSION__
export const IsDesktopPlatform = window.electronRemoteBridge != undefined
export const IsWebPlatform = window.electronRemoteBridge == undefined