/** * Represents a service identifier. Can be a class constructor or a string. * If a factory is registered then the service identifier *must* be a string. */ export interface ServiceIdentifier { (...args: any[]): T; name?: string; }