SYMBOL INDEX (88 symbols across 30 files) FILE: grpc_server/demo.js constant PROTO_PATH (line 4) | let PROTO_PATH = __dirname + "/../protos/demo.proto"; function YodelayWorld (line 16) | function YodelayWorld(call, callback) { function toLowerCase (line 24) | function toLowerCase(call, callback) { function gRPCPermutations (line 33) | function gRPCPermutations(call, callback) { function greetManyTimes (line 55) | function greetManyTimes(call, callback) { function longGreet (line 82) | function longGreet(call, callback) { function main (line 126) | function main() { FILE: grpc_server/grpc_server.js constant PROTO_PATH (line 5) | let PROTO_PATH = __dirname + '/../protos/helloworld.proto'; function sayHello (line 28) | function sayHello(call, callback) { function main (line 53) | function main() { FILE: grpc_server/uServerStream.js constant PROTO_PATH (line 6) | let PROTO_PATH = __dirname + '/../protos/uGreet.proto'; function greetManyTimes (line 23) | function greetManyTimes(call, callback) { function main (line 41) | function main() { FILE: server_client/helper_request_func.js function parseProto (line 8) | async function parseProto(uploadParsedReqBody) { class GrpcRequestClass (line 99) | class GrpcRequestClass extends EventEmitter { method constructor (line 100) | constructor(websocket) { method sendInit (line 115) | sendInit (reqbody) { FILE: server_client/server_client.js constant PORT (line 9) | const PORT = process.env.PORT || 443; constant INSECURE_PORT (line 10) | const INSECURE_PORT = process.env.INSECURE_PORT || 80; constant MODE (line 11) | const MODE = process.env.MODE || "PRODUCTION"; FILE: src/actions/changeTheme.ts constant CHANGE_THEME (line 3) | const CHANGE_THEME = "CHANGE_THEME"; type changeTheme (line 6) | interface changeTheme { type changeThemeAction (line 12) | type changeThemeAction = changeTheme; FILE: src/actions/test.ts constant INCREMENT (line 5) | const INCREMENT = 'INCREMENT' constant DECREMENT (line 6) | const DECREMENT = 'DECREMENT' type incrementAction (line 12) | interface incrementAction { type decrementAction (line 17) | interface decrementAction { type incrementActions (line 23) | type incrementActions = incrementAction | decrementAction FILE: src/actions/updateMenu.ts constant LOAD_SERVICE_OPTIONS (line 3) | const LOAD_SERVICE_OPTIONS = 'LOAD_SERVICE_OPTIONS ' constant LOAD_REQUEST_OPTIONS (line 4) | const LOAD_REQUEST_OPTIONS = 'LOAD_REQUEST_OPTIONS ' type loadServiceOptions (line 9) | interface loadServiceOptions { type loadRequestOptions (line 14) | interface loadRequestOptions { type loadMenuAction (line 20) | type loadMenuAction = loadServiceOptions | loadRequestOptions FILE: src/actions/uploadProto.ts constant UPLOAD_PROTO (line 4) | const UPLOAD_PROTO = "UPLOAD_PROTO"; constant SEND_PROTO (line 5) | const SEND_PROTO = "SEND_PROTO"; constant UPLOAD_PROTO_SUCCESSFUL (line 6) | const UPLOAD_PROTO_SUCCESSFUL = "UPLOAD_PROTO_SUCCESSFUL"; constant UPLOAD_PROTO_FAILED (line 7) | const UPLOAD_PROTO_FAILED = "UPLOAD_PROTO_FAILED"; constant SEND_UNARY_REQUEST (line 8) | const SEND_UNARY_REQUEST = "SEND_UNARY_REQUEST"; constant SET_MESSAGE (line 9) | const SET_MESSAGE = "SET_MESSAGE"; constant SET_SERVICE (line 10) | const SET_SERVICE = "SET_SERVICE"; constant SET_URL (line 11) | const SET_URL = "SET_URL"; constant SET_REQUEST (line 12) | const SET_REQUEST = "SET_REQUEST"; constant DISPLAY_UNARY_RESPONSE (line 13) | const DISPLAY_UNARY_RESPONSE = "DISPLAY_UNARY_RESPONSE"; constant CLEAR_RESPONSE_EDITOR (line 14) | const CLEAR_RESPONSE_EDITOR = "CLEAR_RESPONSE_EDITOR"; constant SHOW_POPUP (line 15) | const SHOW_POPUP = "SHOW_POPUP"; constant SET_WS_COMMAND (line 16) | const SET_WS_COMMAND = "SET_WS_COMMAND"; constant START_WEBSOCKET (line 17) | const START_WEBSOCKET = "START_WEBSOCKET"; type uploadProto (line 21) | interface uploadProto { type sendProto (line 26) | interface sendProto { type uploadProtoSuccessful (line 31) | interface uploadProtoSuccessful { type sendUnaryRequest (line 36) | interface sendUnaryRequest { type displayUnaryResponse (line 41) | interface displayUnaryResponse { type setMessage (line 46) | interface setMessage { type setService (line 51) | interface setService { type setUrl (line 56) | interface setUrl { type setRequest (line 61) | interface setRequest { type uploadProtoFailed (line 66) | interface uploadProtoFailed { type clearResponseEditor (line 71) | interface clearResponseEditor { type showPopup (line 76) | interface showPopup { type setWsCommand (line 81) | interface setWsCommand { type startWebsocket (line 86) | interface startWebsocket { type uploadProtoAction (line 92) | type uploadProtoAction = FILE: src/components/DropdownRequest.tsx type DropdownRequestProps (line 9) | interface DropdownRequestProps { FILE: src/components/DropdownService.tsx type DropdownServiceProps (line 7) | interface DropdownServiceProps { FILE: src/components/Editor.tsx type editorProps (line 9) | interface editorProps { FILE: src/components/EditorRequest.tsx type RequestProps (line 14) | interface RequestProps { FILE: src/components/EditorResponse.tsx type ResponseProps (line 15) | interface ResponseProps { FILE: src/components/Popup.tsx type PopupProps (line 5) | interface PopupProps { FILE: src/components/Settings.tsx type SettingsProps (line 10) | interface SettingsProps { FILE: src/components/TestProto.tsx type TestProtoProps (line 26) | interface TestProtoProps { FILE: src/components/common/Button.tsx type ButtonProps (line 4) | interface ButtonProps { FILE: src/components/common/DropdownMenu.tsx type DropdownMenuProps (line 2) | interface DropdownMenuProps { FILE: src/containers/App.tsx type AppProps (line 32) | interface AppProps { FILE: src/containers/Body.tsx type BodyProps (line 36) | interface BodyProps { FILE: src/containers/Footer.tsx type FooterProps (line 6) | interface FooterProps { FILE: src/containers/Header.tsx type HeaderProps (line 10) | interface HeaderProps { FILE: src/containers/Navbar.tsx type NavbarProps (line 11) | interface NavbarProps { FILE: src/reducers/changeTheme.ts type initialThemeStateType (line 5) | interface initialThemeStateType { FILE: src/reducers/index.ts type RootState (line 8) | interface RootState { FILE: src/reducers/test.ts type testState (line 5) | interface testState { FILE: src/reducers/updateMenu.ts type initialMenuStateType (line 5) | interface initialMenuStateType { FILE: src/reducers/uploadProto.ts type typeResponse (line 19) | interface typeResponse { type typeRequest (line 24) | interface typeRequest { type initialProtoStateType (line 31) | interface initialProtoStateType { FILE: src/sagas/sagas.ts constant API_PORT (line 21) | const API_PORT = env.API_PORT; constant API_HOST (line 23) | const API_HOST = env.API_HOST; constant API_PROTOCOL (line 25) | const API_PROTOCOL = env.API_PROTOCOL; constant NODE_ENV (line 27) | const NODE_ENV = env.NODE_ENV;