Skip to content

Commit 703b607

Browse files
committed
docs: fix some jsdocs warnings
1 parent 6033df6 commit 703b607

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/packages/documents/documents/entity-actions/notifications/repository/document-notifications.server.data.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { tryExecuteAndNotify } from '@umbraco-cms/backoffice/resources';
66
/**
77
* A data source for the Document Culture and Hostnames that fetches data from the server
88
* @class UmbDocumentNotificationsServerDataSource
9-
* @implements {RepositoryDetailDataSource}
109
*/
1110
export class UmbDocumentNotificationsServerDataSource {
1211
#host: UmbControllerHost;
@@ -22,7 +21,7 @@ export class UmbDocumentNotificationsServerDataSource {
2221

2322
/**
2423
* Fetches the Culture and Hostnames for the given Document unique
25-
* @param {string} unique
24+
* @param {string} unique - The unique identifier of the Document
2625
* @memberof UmbDocumentNotificationsServerDataSource
2726
*/
2827
async read(unique: string) {
@@ -32,8 +31,8 @@ export class UmbDocumentNotificationsServerDataSource {
3231

3332
/**
3433
* Updates Culture and Hostnames for the given Document unique
35-
* @param {string} unique
36-
* @param {UpdateDocumentNotificationsRequestModel} data
34+
* @param {string} unique - The unique identifier of the Document
35+
* @param {UpdateDocumentNotificationsRequestModel} data - The data to update
3736
* @memberof UmbDocumentNotificationsServerDataSource
3837
*/
3938
async update(unique: string, data: UpdateDocumentNotificationsRequestModel) {

0 commit comments

Comments
 (0)