SYMBOL INDEX (19 symbols across 6 files) FILE: src/constants.ts constant APP_NAME (line 1) | const APP_NAME = "Excalidraw"; constant EXCALIDRAW_API (line 2) | const EXCALIDRAW_API = "https://excalidraw.com/version.json"; constant EXCALIDRAW_ASAR_SOURCE (line 3) | const EXCALIDRAW_ASAR_SOURCE = "https://excalidraw.com/excalidraw.asar"; constant EXCALIDRAW_GITHUB_PACKAGE_JSON_URL (line 4) | const EXCALIDRAW_GITHUB_PACKAGE_JSON_URL = FILE: src/main.ts constant EXCALIDRAW_BUNDLE (line 12) | const EXCALIDRAW_BUNDLE = path.join(__dirname, "client", "index.html"); constant APP_ICON_PATH (line 13) | const APP_ICON_PATH = path.join(__dirname, "client", "logo-180x180.png"); function createWindow (line 15) | function createWindow() { function openExternalURLs (line 69) | function openExternalURLs(event: Electron.Event, url: string) { FILE: src/menu.ts constant ABOUT_PAGE_PATH (line 7) | const ABOUT_PAGE_PATH = path.resolve(__dirname, "pages", "about.html"); FILE: src/types.ts type IpcListener (line 3) | type IpcListener = (event: IpcRendererEvent, ...args: any[]) => void; type CustomIpcSender (line 4) | type CustomIpcSender = (channel: string, ...args: any[]) => null; type CustomIpcRenderer (line 6) | interface CustomIpcRenderer extends IpcRenderer { type RendererWindow (line 12) | interface RendererWindow extends Window { FILE: src/util/checkVersion.ts constant LOCAL_VERSION_PATH (line 6) | const LOCAL_VERSION_PATH = path.resolve(__dirname, "client", "version.js... type CheckResponse (line 8) | interface CheckResponse { function checkVersion (line 33) | async function checkVersion(): Promise { FILE: tasks/download.js constant DEST (line 7) | const DEST = "dist/excalidraw.asar"; constant SOURCE (line 8) | const SOURCE = "https://excalidraw.com/excalidraw.asar"; constant UNPACK (line 9) | const UNPACK = "dist/client";