Fix base type of UIErrorEventArgs

This commit is contained in:
Daniel Roth 2018-06-02 14:20:29 -07:00 committed by Ryan Nowak
parent cb186f494a
commit 13849a6739
2 changed files with 2 additions and 2 deletions

View File

@ -248,7 +248,7 @@ interface UIDataTransferItem {
type: string;
}
interface UIErrorEventArgs extends UIProgressEventArgs {
interface UIErrorEventArgs extends UIEventArgs {
}
interface UIFocusEventArgs extends UIEventArgs {

View File

@ -168,7 +168,7 @@ namespace Microsoft.AspNetCore.Blazor
/// <summary>
/// Supplies information about an error event that is being raised.
/// </summary>
public class UIErrorEventArgs : UIProgressEventArgs
public class UIErrorEventArgs : UIEventArgs
{
}