fix: "beforeClose" missing parameter declaration (#4019)

This commit is contained in:
大喵 2021-02-04 10:29:05 +08:00 committed by GitHub
parent 7d71c879bd
commit b75851c4c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ interface DialogOptions {
* @deprecated use beforeClose instead
*/
asyncClose?: boolean;
beforeClose?: null | (() => Promise<void> | void);
beforeClose?: null | ((action: Action) => Promise<void> | void);
businessId?: number;
sessionFrom?: string;
overlayStyle?: string;