interface UmbCollectionWorkspaceContext<T> {
    contentTypeHasCollection: Observable<boolean>;
    structure: UmbContentTypeStructureManager<T>;
    unique: Observable<undefined | UmbWorkspaceUniqueType>;
    workspaceAlias: string;
    destroy(): void;
    getCollectionAlias(): string;
    getEntityType(): string;
    getUnique(): undefined | UmbWorkspaceUniqueType;
}

Type Parameters

Hierarchy (view full)

Implemented by

Properties

contentTypeHasCollection: Observable<boolean>
unique: Observable<undefined | UmbWorkspaceUniqueType>
workspaceAlias: string

Methods

""