Fix overindented decorated properties

This commit is contained in:
Yury Bondarenko
2024-04-18 13:14:04 +02:00
parent eec052fd77
commit f1c25ee344
120 changed files with 578 additions and 575 deletions

View File

@@ -25,23 +25,23 @@ export class HierarchicalBrowseDefinition extends BrowseDefinition {
* The object type
*/
@excludeFromEquals
type: ResourceType = HIERARCHICAL_BROWSE_DEFINITION;
type: ResourceType = HIERARCHICAL_BROWSE_DEFINITION;
@autoserialize
facetType: string;
facetType: string;
@autoserialize
vocabulary: string;
vocabulary: string;
@autoserializeAs('metadata')
metadataKeys: string[];
metadataKeys: string[];
get self(): string {
return this._links.self.href;
}
@deserialize
_links: {
_links: {
self: HALLink;
vocabulary: HALLink;
};