needle
needle copied to clipboard
Support typealias for components
Some developers like to use typealias to change a component's name. We should support this.
It would be useful to have support for such things. To not write all required properties manually evey time
protocol HasApiClient {
var apiClient: ApiClient { get }
}
protocol HasStoryboard {
var mainStoryboard: UIStoryboard { get }
}
protocol LiveFeedDependency: Dependency, HasApiClient, HasStoryboard {
var apiClient: ApiClient { get }
}