Fix all the bugs (it wörks now)
This commit is contained in:
+4
-4
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user