File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/packages/core/content-type/structure Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -273,9 +273,9 @@ export class UmbContentTypeStructureManager<
273
273
274
274
/**
275
275
* 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.
279
279
*/
280
280
async ensureContainerOf (
281
281
containerId : string ,
@@ -296,9 +296,9 @@ export class UmbContentTypeStructureManager<
296
296
297
297
/**
298
298
* 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.
302
302
*/
303
303
async cloneContainerTo (
304
304
containerId : string ,
You can’t perform that action at this time.
0 commit comments