jsdocs fix

This commit is contained in:
Niels Lyngsø
2024-08-19 12:34:56 +02:00
parent b812f3eaf7
commit be5d9ad8fb
3 changed files with 6 additions and 8 deletions

View File

@@ -702,10 +702,10 @@ export const data: Array<UmbMockDataTypeModel> = [
alias: 'blockGroups',
value: [{ key: 'demo-block-group-id', name: 'Demo Blocks' }],
},
{
alias: 'layoutStylesheet',
value: '/wwwroot/css/umbraco-blockgridlayout.css'
},
{
alias: 'layoutStylesheet',
value: '/wwwroot/css/umbraco-blockgridlayout.css',
},
{
alias: 'blocks',
value: [

View File

@@ -77,7 +77,6 @@ class UmbBindToValidationDirective extends AsyncDirective {
* ```js
* html`<input ${umbBindToValidation(this, '$.headline', this.headlineValue)}>`;
* ```
*
*/
export const umbBindToValidation = directive(UmbBindToValidationDirective);

View File

@@ -4,16 +4,15 @@ import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';
import { UmbItemStoreBase } from '@umbraco-cms/backoffice/store';
/**
* @export
* @class UmbWebhookItemStore
* @augments {UmbStoreBase}
* @augments {UmbItemStoreBase}
* @description - Data Store for Webhook items
*/
export class UmbWebhookItemStore extends UmbItemStoreBase<UmbWebhookItemModel> {
/**
* Creates an instance of UmbWebhookItemStore.
* @param {UmbControllerHost} host
* @param {UmbControllerHost} host - The controller host
* @memberof UmbWebhookItemStore
*/
constructor(host: UmbControllerHost) {