Fix all the bugs (it wörks now)

This commit is contained in:
Daniel Kluge
2023-11-01 20:39:30 +01:00
parent 7d21df351b
commit cab50cda6a
12 changed files with 104 additions and 79 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
import { types } from "@aas-core-works/aas-core3.0-typescript";
import type { Request, OnRequestCallback } from "types/requests";
import type { Request, OnRequestCallback } from "./types/requests";
export default abstract class AASInterfaceServer<ConfigInterface> {
public abstract readonly name: string;
public abstract readonly supportsSubscriptions: boolean;
public static readonly serverInterfaceName: string;
public static readonly supportsSubscriptions: boolean;
constructor(
protected readonly config: ConfigInterface,
protected readonly aas: types.Environment,
protected readonly aas: types.Environment,
protected readonly onRequestCallback: OnRequestCallback) {}
public abstract prepare(): void;