From 685ed0b65ad712e400c3da39538ce76b72eb3120 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Wed, 9 Oct 2024 12:15:07 +0200 Subject: [PATCH] JSDocs --- .../workspace/block-element-property-dataset.context.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/block/block/workspace/block-element-property-dataset.context.ts b/src/Umbraco.Web.UI.Client/src/packages/block/block/workspace/block-element-property-dataset.context.ts index 8daff7f3fb..291444df3a 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/block/block/workspace/block-element-property-dataset.context.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/block/block/workspace/block-element-property-dataset.context.ts @@ -59,8 +59,8 @@ export class UmbBlockElementPropertyDatasetContext extends UmbControllerBase imp /** * @function propertyValueByAlias - * @param {string} propertyAlias - * @returns {Promise | undefined>} + * @param {string} propertyAlias - The alias of the property + * @returns {Promise | undefined>} - An observable of the property value. * @description Get an Observable for the value of this property. */ async propertyValueByAlias(propertyAlias: string) { @@ -69,7 +69,7 @@ export class UmbBlockElementPropertyDatasetContext extends UmbControllerBase imp /** * @function setPropertyValue - * @param {string} alias + * @param {string} alias - The alias of the property * @param {unknown} value - value can be a promise resolving into the actual value or the raw value it self. * @returns {Promise} * @description Set the value of this property.