Add missing "defaultFocus" attribute to ConfirmationOptions.d.ts

fixes #2058
pull/2147/head
Denis Forveille 2022-02-01 14:14:42 -05:00 committed by Tuğçe Küçükoğlu
parent 0e56566082
commit 4ff6ea11ab
1 changed files with 4 additions and 0 deletions

View File

@ -55,4 +55,8 @@ export interface ConfirmationOptions {
* Style class of the reject button.
*/
rejectClass?: string | undefined;
/**
* Element to receive the focus when the dialog gets visible, valid values are "accept" and "reject".
*/
defaultFocus?: string | undefined;
}