import type ServiceScope from './ServiceScope'; /** * A shorthand pattern for extracting well-known services from a ServiceScope. * * @public * * @deprecated This pattern has been superceded by the BaseComponentContext pattern. * This interface will be removed in a future release. */ interface IServiceCollection { /** * Returns the underlying ServiceScope that the members belong to. */ readonly serviceScope: ServiceScope; } export default IServiceCollection; //# sourceMappingURL=IServiceCollection.d.ts.map