diff --git a/packages/td-tools/src/thing-description.ts b/packages/td-tools/src/thing-description.ts index 4abca4b45..ce55e9073 100644 --- a/packages/td-tools/src/thing-description.ts +++ b/packages/td-tools/src/thing-description.ts @@ -64,10 +64,6 @@ export interface ThingInteraction { [key: string]: any; } -export class ExpectedResponse implements ExpectedResponse { - contentType?: string; -} - /** Implements the Interaction Form description */ export class Form implements Form { href: string; @@ -84,18 +80,6 @@ export class Form implements Form { } } -/** Carries version information about the TD instance. If required, additional version information such as firmware and hardware version (term definitions outside of the TD namespace) can be extended here. */ -export interface VersionInfo { - instance?: string; -} - -export interface Link { - href: string; - rel?: string | Array; - type?: string; // media type hint, no media type parameters - anchor?: string; -} - export interface ExpectedResponse { contentType?: string; }