/**
* Represents a generic service with a unique identifier.
* Best used to wrap third party libraries to provide the app
* with an api for the library.
*/
export interfaceService {
/**
* Unique symbol identifying the service instance.
*/readonly serviceId: symbol;
}