mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
19 lines
346 B
C#
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; }
|
|||
|
}
|
|||
|
}
|