ant-design-blazor/components/drawer/IDrawerRef.cs
TimChen 19f51c87fa fix(module: drawer): close event bug (#599)
* fix: drawer close event bug

* refactor: translate some comments

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-09-16 19:42:48 +08:00

19 lines
346 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace AntDesign
{
public interface IDrawerRef
{
DrawerOptions Options { get; set; }
Drawer Drawer { get; set; }
Task CloseAsync();
Func<DrawerClosingEventArgs, Task> OnClosing { get; set; }
}
}