Skip to content

Commit 414eab4

Browse files
committed
jsdocs
1 parent 9937732 commit 414eab4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/packages/core/content-type/structure/content-type-structure-manager.class.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -273,9 +273,9 @@ export class UmbContentTypeStructureManager<
273273

274274
/**
275275
* Ensure a container exists for a specific Content Type. Otherwise clone it.
276-
* @param containerId - The container to ensure exists on the given ContentType.
277-
* @param contentTypeUnique - The content type to ensure the container for.
278-
* @returns Promise<UmbPropertyTypeContainerModel | undefined>
276+
* @param {string} containerId - The container to ensure exists on the given ContentType.
277+
* @param {string} contentTypeUnique - The content type to ensure the container for.
278+
* @returns {Promise<UmbPropertyTypeContainerModel | undefined>} - The container found or created for the owner ContentType.
279279
*/
280280
async ensureContainerOf(
281281
containerId: string,
@@ -296,9 +296,9 @@ export class UmbContentTypeStructureManager<
296296

297297
/**
298298
* Clone a container to a specific Content Type.
299-
* @param containerId - The container to clone, assuming it does not already exist on the given Content Type.
300-
* @param toContentTypeUnique - The content type to clone to.
301-
* @returns Promise<UmbPropertyTypeContainerModel | undefined>
299+
* @param {string} containerId - The container to clone, assuming it does not already exist on the given Content Type.
300+
* @param {string} toContentTypeUnique - The content type to clone to.
301+
* @returns {Promise<UmbPropertyTypeContainerModel | undefined>} - The container cloned or found for the owner ContentType.
302302
*/
303303
async cloneContainerTo(
304304
containerId: string,

0 commit comments

Comments
 (0)