import { AddValueRequest, AddValueResponse, Logging } from "./out/index"; // Logging.verbose = false; import * as Client from "./out/index_client"; import * as Server from "./out/index_server"; const client = new Client.ServiceProvider((msg) => { session.onMessage(msg); }); const server = new Server.ServiceProvider(); const session = server.getSession((msg) => { client.onPacket(msg); }); class TestService extends Server.TestService { async AddValuesSingleParam( request: AddValueRequest, ctx: undefined ): Promise { return { value: request.value1 + request.value2, }; } async AddValuesMultipleParams( value1: number, value2: number, ctx: undefined ): Promise { return value1 + value2; } OnEvent(param1: string, ctx: undefined): void { console.log("Received notification", param1); } } server.addService(new TestService()); const test = new Client.TestService(client); async function run() { console.log("Testing AddValuesSingleParam"); console.log( await test.AddValuesSingleParam({ value1: 1, value2: 2, }) ); console.log("Testing AddValuesMultipleParams"); console.log(await test.AddValuesMultipleParams(1, 2)); console.log("Testing Notification"); test.OnEvent("Hi, this is an event"); console.log("Let verification fail!"); await test //@ts-ignore .AddValuesMultipleParams("asd", 2) .then(() => { console.log("!!!!This should have failed!!!!"); }) .catch((err) => { console.log("Found expected error!", err.message); }); } run();