Fixed configuration to allow merge of new data into existing data
This commit is contained in:
@@ -2,6 +2,13 @@
|
||||
|
||||
public interface IComponent
|
||||
{
|
||||
IComponentBuilder Configure(string? name = null,
|
||||
IComponentBuilder Configure(string name,
|
||||
Action<IComponentBuilder>? builderDelegate = null);
|
||||
|
||||
IComponentBuilder Configure(Action<IComponentBuilder>? builderDelegate = null);
|
||||
|
||||
IComponentBuilder Configure<TConfiguration>(string name,
|
||||
TConfiguration? configuration = null,
|
||||
Action<IComponentBuilder>? builderDelegate = null)
|
||||
where TConfiguration : class, new();
|
||||
}
|
||||
Reference in New Issue
Block a user