feat: add @sortable tags to certain translatable properties

This commit is contained in:
Wieland Schöbl
2019-09-18 11:27:53 +02:00
parent 67041aa39d
commit f5e88569eb
2 changed files with 8 additions and 0 deletions

View File

@@ -62,6 +62,12 @@ export interface SCThingWithCategories<T, U extends SCThingWithCategoriesSpecifi
*/ */
export interface SCThingWithCategoriesTranslatableProperties export interface SCThingWithCategoriesTranslatableProperties
extends SCThingTranslatableProperties { extends SCThingTranslatableProperties {
/**
* translations of the categories of a thing with categories
*
* @sortable ducet
*/
categories?: string[];
} }
/** /**
@@ -94,6 +100,7 @@ export interface SCThingWithCategoriesSpecificValues {
/** /**
* Category specific name of a thing * Category specific name of a thing
* *
* @sortable ducet
* @text * @text
*/ */
name?: string; name?: string;

View File

@@ -223,6 +223,7 @@ export interface SCThingTranslatableProperties {
/** /**
* Translation of the name of the thing * Translation of the name of the thing
* *
* @sortable ducet
* @text * @text
*/ */
name?: string; name?: string;