jsdocs fix
This commit is contained in:
@@ -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: [
|
||||
|
||||
@@ -77,7 +77,6 @@ class UmbBindToValidationDirective extends AsyncDirective {
|
||||
* ```js
|
||||
* html`<input ${umbBindToValidation(this, '$.headline', this.headlineValue)}>`;
|
||||
* ```
|
||||
*
|
||||
*/
|
||||
export const umbBindToValidation = directive(UmbBindToValidationDirective);
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user