File: LifecycleEvents\ILifecycleBuilder.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
using System;
 
namespace Microsoft.Maui.LifecycleEvents
{
	public interface ILifecycleBuilder
	{
		void AddEvent<TDelegate>(string eventName, TDelegate action)
			where TDelegate : Delegate;
	}
}