SYMBOL INDEX (49 symbols across 13 files) FILE: build/build-server.js constant PUBLIC (line 8) | const PUBLIC = '../spring/src/main/resources/public/' FILE: electron/index.js constant JAR (line 9) | const JAR = 'spring-1.0.0.jar' // how to avoid manual update of this? constant MAX_CHECK_COUNT (line 10) | const MAX_CHECK_COUNT = 10 function startServer (line 20) | function startServer(port) { function stopServer (line 42) | function stopServer() { function createSplash (line 69) | function createSplash() { function createWindow (line 81) | function createWindow(callback) { function quitOnError (line 110) | function quitOnError(title, content) { function loadHomePage (line 116) | function loadHomePage() { FILE: electron/preload.js constant LOG_PREFIX (line 4) | const LOG_PREFIX = '[ui]' method info (line 8) | info(msg) { method debug (line 11) | debug(msg) { method warn (line 14) | warn(msg) { method error (line 17) | error(msg) { method log (line 20) | log(msg) { method setBadgeCount (line 24) | setBadgeCount(count) { method showOpenDialog (line 27) | showOpenDialog() { method showSaveDialog (line 30) | showSaveDialog() { FILE: spring/src/main/java/com/example/demo/DemoApplication.java class DemoApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: spring/src/main/java/com/example/demo/controller/ItemController.java class ItemController (line 12) | @RestController method getItems (line 19) | @RequestMapping("/items") FILE: spring/src/main/java/com/example/demo/model/Item.java class Item (line 3) | public class Item { method Item (line 9) | public Item() { method Item (line 12) | public Item(long id, String name) { method getId (line 17) | public long getId() { method setId (line 21) | public void setId(long id) { method getName (line 25) | public String getName() { method setName (line 29) | public void setName(String name) { FILE: spring/src/main/java/com/example/demo/service/ItemService.java type ItemService (line 9) | public interface ItemService { method getItems (line 11) | List getItems(); FILE: spring/src/main/java/com/example/demo/service/impl/ItemServiceImpl.java class ItemServiceImpl (line 11) | @Service("itemService") method ItemServiceImpl (line 16) | public ItemServiceImpl() { method getItems (line 22) | @Override FILE: spring/src/test/java/com/example/demo/DemoApplicationTests.java class DemoApplicationTests (line 6) | @SpringBootTest method contextLoads (line 9) | @Test FILE: vue/src/interop-fallback.ts function promptNoElectron (line 4) | function promptNoElectron() { method info (line 11) | info(msg: string) { method debug (line 14) | debug(msg: string) { method warn (line 17) | warn(msg: string) { method error (line 20) | error(msg: string) { method log (line 23) | log(msg: string) { method setBadgeCount (line 27) | setBadgeCount(count: Number) { method showOpenDialog (line 30) | showOpenDialog() { method showSaveDialog (line 36) | showSaveDialog() { FILE: vue/src/keys.ts constant KEY_INTEROP (line 4) | const KEY_INTEROP = Symbol() as InjectionKey constant KEY_LOG (line 5) | const KEY_LOG = Symbol() as InjectionKey FILE: vue/src/types/Interop.ts type Interop (line 1) | interface Interop { FILE: vue/src/types/Item.ts type Item (line 1) | type Item = {