From 66075ef99b95198a9cd5c0a396603e089221bcd9 Mon Sep 17 00:00:00 2001 From: Rainer Killinger Date: Wed, 19 Aug 2020 12:07:20 +0200 Subject: [PATCH] fix: remove redundant property declaration --- src/things/building.ts | 9 --------- src/things/dish.ts | 9 --------- src/things/setting.ts | 4 ---- 3 files changed, 22 deletions(-) diff --git a/src/things/building.ts b/src/things/building.ts index aa7d788c..69744c5f 100644 --- a/src/things/building.ts +++ b/src/things/building.ts @@ -41,15 +41,6 @@ export type SCBuildingCategories = export interface SCBuildingWithoutReferences extends SCThingWithCategoriesWithoutReferences, SCPlaceWithoutReferences { - /** - * Categories of a building - * - * @sortable ducet - * @aggregatable - * @filterable - */ - categories: SCBuildingCategories[]; - /** * List of floor names of the place * diff --git a/src/things/dish.ts b/src/things/dish.ts index 739b2500..92dfd98d 100644 --- a/src/things/dish.ts +++ b/src/things/dish.ts @@ -43,15 +43,6 @@ export interface SCDishWithoutReferences */ additives?: string[]; - /** - * Category of the dish - * - * @sortable ducet - * @aggregatable - * @filterable - */ - categories: SCDishCategories[]; - /** * Characteristics of the dish */ diff --git a/src/things/setting.ts b/src/things/setting.ts index b45e2ac8..d0da766a 100644 --- a/src/things/setting.ts +++ b/src/things/setting.ts @@ -27,10 +27,6 @@ import { */ export interface SCSettingWithoutReferences extends SCThingWithCategoriesWithoutReferences { - /** - * Categories of a setting - */ - categories: SCSettingCategories[]; /** * The default value of a setting */