Interface UmbPropertyStructureWorkspaceContext<ContentTypeModel>

interface UmbPropertyStructureWorkspaceContext<ContentTypeModel> {
    structure: UmbContentTypeStructureManager<ContentTypeModel>;
    unique: Observable<undefined | UmbWorkspaceUniqueType>;
    workspaceAlias: string;
    destroy(): void;
    getEntityType(): string;
    getUnique(): undefined | UmbWorkspaceUniqueType;
    propertyStructureById(id: string): Promise<Observable<undefined | UmbPropertyTypeModel>>;
}

Type Parameters

Hierarchy (view full)

Properties

unique: Observable<undefined | UmbWorkspaceUniqueType>
workspaceAlias: string

Methods

""