-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Hi. I have a proposal. There is an example:
export class Config {
public url = "https://google.com";
}
export class SubService {
@inject public configModel: ConfigModel;
}
export class MainService {
public prop = new SubService();
public props = [new SubService(), new SubService()];
}
@provider(
Config,
MainService,
)
export class Html extends React.Component {
@inject private service: MainService;
}
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request