UNPKG

@omnia/tooling-composers

Version:

Provide tooling to work with manifest things.

14 lines (13 loc) 559 B
import { ServiceFeatureManifest } from './models/index'; import { GuidValue } from '../../fx-models'; export declare class ServiceFeatureRegistry { static AddedFeatures: { [uniqueId: string]: ServiceFeatureManifest; }; static FeatureExisted(featureId: GuidValue): boolean; static AddFeatureManifest(featureManifest: ServiceFeatureManifest): void; static GetFeatureManifest(featureId: GuidValue): ServiceFeatureManifest; private static getServerManifests; private static clearState; private static ServerSubscription; }